prevent CNAME/PTR parsing from reading data past the response end
[musl] / include / sched.h
index 822f464..204c34f 100644 (file)
@@ -49,6 +49,7 @@ int     sched_yield(void);
 
 #ifdef _GNU_SOURCE
 #define CSIGNAL                0x000000ff
+#define CLONE_NEWTIME  0x00000080
 #define CLONE_VM       0x00000100
 #define CLONE_FS       0x00000200
 #define CLONE_FILES    0x00000400
@@ -123,7 +124,7 @@ __CPU_op_func_S(XOR, ^)
 #define CPU_ALLOC(n) ((cpu_set_t *)calloc(1,CPU_ALLOC_SIZE(n)))
 #define CPU_FREE(set) free(set)
 
-#define CPU_SETSIZE 128
+#define CPU_SETSIZE 1024
 
 #define CPU_SET(i, set) CPU_SET_S(i,sizeof(cpu_set_t),set)
 #define CPU_CLR(i, set) CPU_CLR_S(i,sizeof(cpu_set_t),set)