Displaying 3 results from an estimated 3 matches for "__kernel_gid32_t".
Did you mean:
__kernel_gid16_t
2004 Sep 02
1
__kernel_timer_t missing
...pedef __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 gid_t;
--
USB is for mice, FireWire is for men!
sUse lINUX ag, n?RNBERG
2023 Jan 26
0
[klibc:time64] time: Use clock_* system calls for time-of-day and sleep
...44
--- a/usr/include/sys/types.h
+++ b/usr/include/sys/types.h
@@ -33,6 +33,7 @@ typedef __kernel_key_t key_t;
typedef __kernel_suseconds_t suseconds_t;
/* typedef __kernel_timer_t timer_t; */
typedef int timer_t;
+typedef __kernel_clockid_t clockid_t;
typedef __kernel_uid32_t uid_t;
typedef __kernel_gid32_t gid_t;
diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild
index 02a18e64..8b132190 100644
--- a/usr/klibc/Kbuild
+++ b/usr/klibc/Kbuild
@@ -29,7 +29,8 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \
statfs.o fstatfs.o umount.o \
creat.o open.o openat.o \
fread2.o fwrite2.o fget...
2004 Feb 22
3
ARM/Thumb updates and some other minor tweaks
...+ * __kernel_timer_t is not defined in arm kernel 2.4.21-rmk2 which causes
+ * arm klibc builds to fail. timer_t doesn't seem to be used within klibc
+ * so commenting out the typedef seems like a valid fix ?
+ */
+//typedef __kernel_timer_t timer_t;
typedef __kernel_uid32_t uid_t;
typedef __kernel_gid32_t gid_t;
diff -ruN klibc-0.114_orig/klibc/strntoumax.c klibc-0.114/klibc/strntoumax.c
--- klibc-0.114_orig/klibc/strntoumax.c 2002-08-09 19:25:24.000000000 -0700
+++ klibc-0.114/klibc/strntoumax.c 2004-02-22 04:39:00.000000000 -0800
@@ -10,15 +10,12 @@
static inline int digitval(int ch)
{
- if (...