From: Ulrich Drepper Date: Fri, 11 Nov 2011 17:57:31 +0000 (-0500) Subject: makecontext doens't need __THROWNL X-Git-Tag: glibc-2.15~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57769839788e2c62b68d9dfbf4b35052321278ba;p=thirdparty%2Fglibc.git makecontext doens't need __THROWNL --- diff --git a/ChangeLog b/ChangeLog index e8bef2aea9c..60fb50ce545 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-11-11 Ulrich Drepper + + * stdlib/ucontext.h: Undo last change for makecontext. + 2011-11-11 Andreas Schwab * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script. diff --git a/stdlib/ucontext.h b/stdlib/ucontext.h index 498fb5633d6..abeb6471da3 100644 --- a/stdlib/ucontext.h +++ b/stdlib/ucontext.h @@ -46,7 +46,7 @@ extern int swapcontext (ucontext_t *__restrict __oucp, We cannot say anything about the parameters FUNC takes; `void' is as good as any other choice. */ extern void makecontext (ucontext_t *__ucp, void (*__func) (void), - int __argc, ...) __THROWNL; + int __argc, ...) __THROW; __END_DECLS