mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
618aebdd8a
Add an initial implementation of pthread attributes for: * detach state (joinable, detached) * schedule params (just priority) * guard page size (as skeleton) (requires kernel support maybe?) * stack size and user-provided stack location (4 or 8 MB only, must be aligned) Add some tests too, to the thread test program. Also, LibC: Move pthread declarations to sys/types.h, where they belong.
38 lines
678 B
C
38 lines
678 B
C
#pragma once
|
|
|
|
#include <bits/stdint.h>
|
|
|
|
#define PAGE_SIZE 4096
|
|
|
|
#define PATH_MAX 4096
|
|
#if !defined MAXPATHLEN && defined PATH_MAX
|
|
# define MAXPATHLEN PATH_MAX
|
|
#endif
|
|
#define PIPE_BUF 4096
|
|
|
|
#define INT_MAX INT32_MAX
|
|
#define INT_MIN INT32_MIN
|
|
|
|
#define UINT_MAX UINT32_MAX
|
|
#define UINT_MIN UINT32_MIN
|
|
|
|
#define CHAR_BIT 8
|
|
#define SCHAR_MIN (-128)
|
|
#define SCHAR_MAX 127
|
|
#define UCHAR_MAX 255
|
|
|
|
#define LONG_MAX 2147483647L
|
|
#define LONG_MIN (-LONG_MAX - 1L)
|
|
|
|
#define LONG_LONG_MAX 9223372036854775807LL
|
|
#define LONG_LONG_MIN (-LONG_LONG_MAX - 1LL)
|
|
|
|
#define CHAR_MIN SCHAR_MIN
|
|
#define CHAR_MAX SCHAR_MAX
|
|
|
|
#define MB_LEN_MAX 16
|
|
|
|
#define ARG_MAX 65536
|
|
|
|
#define PTHREAD_STACK_MIN 65536
|