Switched back to using pthread_create versus lwp_create.
[dragonfly/vkernel-mp.git] / sys / sys / stdint.h
blobb2a95110acd72c4cd4ef9b3b66b53587c8e76ce8
1 /*
2 * This file is in the public domain.
3 * $FreeBSD: src/sys/sys/inttypes.h,v 1.2 1999/08/28 00:51:47 peter Exp $
4 * $DragonFly: src/sys/sys/stdint.h,v 1.3 2005/04/21 18:36:35 joerg Exp $
6 * Note: since portions of these header files can be included with various
7 * other combinations of defines, we cannot surround the whole header file
8 * with an #ifndef sequence. Elements are individually protected.
9 */
11 #include <sys/cdefs.h>
12 #include <machine/stdint.h>
14 #ifndef _SYS_STDINT_H_
15 #define _SYS_STDINT_H_
18 * wchar_t and rune_t have to be of the same type. rune_t is meant
19 * for internal use only.
21 * wchar_t, wint_t and rune_t are signed, to allow EOF (-1) to naturally
22 * assigned.
24 * ANSI specifies ``int'' as argument for the is*() and to*() routines.
25 * Keeping wchar_t and rune_t as ``int'' instead of the more natural
26 * ``long'' helps ANSI conformance. ISO 10646 will most likely end up
27 * as 31 bit standard and all supported architectures have
28 * sizeof(int) >= 4.
30 #ifndef __cplusplus
31 typedef int __wchar_t;
32 #endif
33 typedef int __wint_t;
34 typedef int __rune_t;
35 typedef void *__wctrans_t;
36 typedef void *__wctype_t;
39 * mbstate_t is an opaque object to keep conversion state, during multibyte
40 * stream conversions. The content must not be referenced by user programs.
42 typedef union {
43 __uint8_t __mbstate8[128];
44 __int64_t __mbstateL; /* for alignment */
45 } __mbstate_t;
47 typedef __int64_t __off_t;
48 typedef __int32_t __pid_t;
50 #endif /* SYS_STDINT_H */