OSDN Git Service

fix signature of function accepted by makecontext
authorBobby Bingham <koorogi@koorogi.info>
Fri, 5 Apr 2019 17:26:17 +0000 (12:26 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 5 Apr 2019 21:29:00 +0000 (17:29 -0400)
This parameter was incorrectly declared to be a pointer to a function
accepting zero parameters.  The intent of makecontext is that it is
possible to pass integer parameters to the function, so this should
have been a pointer to a function accepting an unspecified set of
parameters.

include/ucontext.h

index 3bb776e..0f75712 100644 (file)
@@ -15,7 +15,7 @@ extern "C" {
 struct __ucontext;
 
 int  getcontext(struct __ucontext *);
-void makecontext(struct __ucontext *, void (*)(void), int, ...);
+void makecontext(struct __ucontext *, void (*)(), int, ...);
 int  setcontext(const struct __ucontext *);
 int  swapcontext(struct __ucontext *, const struct __ucontext *);