search for: __kernel_pid_t

Displaying 4 results from an estimated 4 matches for "__kernel_pid_t".

2019 Jan 21
0
[klibc:master] fcntl: Fix struct flock for 32-bit architectures
...ts of + * type __kernel_loff_t (= long long). We want struct flock + * to have 64-bit offsets, so we define it here. + */ - This happens to work on all 32-bit architectures except MIPS. */ +struct flock { + short l_type; + short l_whence; + __kernel_loff_t l_start; + __kernel_loff_t l_len; + __kernel_pid_t l_pid; + __ARCH_FLOCK64_PAD +}; #ifdef F_GETLK64 # undef F_GETLK
2004 Sep 02
1
__kernel_timer_t missing
...rchs supported by Linux have typedef int __kernel_timer_t. Can we just get rid of the __kernel_timer_t? --- klibc-0.171/klibc/include/sys/types.h.orig 2004-06-08 07:32:48.000000000 +0200 +++ klibc-0.171/klibc/include/sys/types.h 2004-09-02 15:14:04.495486895 +0200 @@ -28,7 +28,7 @@ typedef __kernel_pid_t pid_t; typedef __kernel_daddr_t daddr_t; typedef __kernel_key_t key_t; typedef __kernel_suseconds_t suseconds_t; -typedef __kernel_timer_t timer_t; +typedef int timer_t; typedef __kernel_uid32_t uid_t; typedef __kernel_gid32_t...
2012 Jun 29
0
[klibc:master] include: [sys/types.h] bury __kernel_nlink_t
...r/include/sys/types.h +++ b/usr/include/sys/types.h @@ -25,7 +25,6 @@ typedef __kernel_fd_set fd_set; typedef uint32_t dev_t; typedef __kernel_ino_t ino_t; typedef __kernel_mode_t mode_t; -typedef __kernel_nlink_t nlink_t; typedef __kernel_loff_t off_t; typedef __kernel_loff_t loff_t; typedef __kernel_pid_t pid_t;
2006 Jun 26
2
[klibc 28/43] mips support for klibc
The parts of klibc specific to the mips architecture. Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- commit 8dc79563c06020d8844b9e9b821741828039b59e tree b957c8fb1fddf486f5c26b1880726051d4f6aaad parent bc9b363b31d301ab94c115cccc2e079c0d318498 author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:31 -0700 committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun