Displaying 8 results from an estimated 8 matches for "key_t".
Did you mean:
key_
2006 Mar 28
3
winecfg not creating ~/.wine/config file
Hello,
after a fresh install, wine 0.9.10 wont start while giving the following errors:
flo@HAL2000 ~ $ wine
can't create key_t for shm: No such file or directory
wineserver: chdir /home/flo/.wine : No such file or directory
winecfg also wont start:
flo@HAL2000 ~ $ winecfg
wine: creating configuration directory '/home/flo/.wine'...
Can't open configuration file /home/flo/.wine-Btgcy6/config
wine: wineprefixcr...
2008 Sep 09
1
DTrace and shared memory id
Hello all,
I saw this question about a year back in the archive[1], but with no
final answer.
I would like to trace shmget calls and also get the id of the shared
memory segment.
That script looked like[2], but we dont get the id since arg1 is the
errno value.
How do i access the shm id, i would need this to debug a customer
problem but i don''t have time to learn it the hard
2004 Sep 02
1
__kernel_timer_t missing
...imer_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 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
..., const struct itimerval *, struct itimerval *);
__extern int utimes(const char *, const struct timeval[2]);
diff --git a/usr/include/sys/types.h b/usr/include/sys/types.h
index b8cdb8cf..e17bc87f 100644
--- 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 10064...
2004 Feb 22
3
ARM/Thumb updates and some other minor tweaks
...ig/klibc/include/sys/types.h klibc-0.114/klibc/include/sys/types.h
--- klibc-0.114_orig/klibc/include/sys/types.h 2004-02-08 22:19:37.000000000 -0800
+++ klibc-0.114/klibc/include/sys/types.h 2004-02-22 04:39:00.000000000 -0800
@@ -27,7 +27,12 @@
typedef __kernel_daddr_t daddr_t;
typedef __kernel_key_t key_t;
typedef __kernel_suseconds_t suseconds_t;
-typedef __kernel_timer_t timer_t;
+/*
+ * __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 fi...
2007 Oct 24
16
PATCH 0/10: Merge PV framebuffer & console into QEMU
The following series of 10 patches is a merge of the xenfb and xenconsoled
functionality into the qemu-dm code. The general approach taken is to have
qemu-dm provide two machine types - one for xen paravirt, the other for
fullyvirt. For compatability the later is the default. The goals overall
are to kill LibVNCServer, remove alot of code duplication and/or parallel
impls of the same concepts, and
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...__fsid_t;
typedef long int __clock_t;
typedef unsigned long int __rlim_t;
typedef unsigned long int __rlim64_t;
typedef unsigned int __id_t;
typedef long int __time_t;
typedef unsigned int __useconds_t;
typedef long int __suseconds_t;
typedef int __daddr_t;
typedef long int __swblk_t;
typedef int __key_t;
typedef int __clockid_t;
typedef void * __timer_t;
typedef long int __blksize_t;
typedef long int __blkcnt_t;
typedef long int __blkcnt64_t;
typedef unsigned long int __fsblkcnt_t;
typedef unsigned long int __fsblkcnt64_t;
typedef unsigned long int __fsfilcnt_t;
typedef unsigned long int __fsfilcn...