fix prototypes/signature for setgroups, etc.
[musl] / src / internal / libc.h
index 60a25ef..c0039e7 100644 (file)
@@ -9,15 +9,12 @@ struct __libc {
        void (*cancelpt)(int);
        void (*lock)(volatile int *);
        void (*lockfile)(FILE *);
-       void (**tsd_keys)(void *);
-       void (*sigtimer)();
+       void (*fork_handler)(int);
        int (*atexit)(void (*)(void));
        void (*fini)(void);
        void (*ldso_fini)(void);
        volatile int threads_minus_1;
        int ofl_lock;
-       int (*rsyscall)(int, long, long, long, long, long, long);
-       void (*fork_handler)(int);
        FILE *ofl_head;
 };
 
@@ -47,6 +44,10 @@ void __lockfile(FILE *);
 #define CANCELPT_BEGIN CANCELPT(1)
 #define CANCELPT_TRY CANCELPT(0)
 #define CANCELPT_END CANCELPT(-1)
+#define CANCELPT_INHIBIT CANCELPT(2)
+#define CANCELPT_RESUME CANCELPT(-2)
+
+int __rsyscall(int, long, long, long, long, long, long);
 
 extern char **__environ;
 #define environ __environ