search for: __fsid_t

Displaying 3 results from an estimated 3 matches for "__fsid_t".

2009 Jun 11
8
[Bug 1607] New: compile errors buliding OpenSSH for older Red Hat
...e defined in defines.h: # define FSID_TO_ULONG(f) ((f)) but I don't see how this could work---was it intentional that sftp-server.c would get an error if this was not defined? Or was it expected that f_fsid would itself be a 64-bit integer in that case? In any case, __fsid_t is defined like this in <bits/types.h> on my system: typedef struct { int __val[2]; } __fsid_t; /* Type of file system IDs. */ and I worked around it by copying the "good" definition of FSID_TO_ULONG in defines.h 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
...unsigned int __uid_t; typedef unsigned int __gid_t; typedef unsigned long int __ino_t; typedef unsigned long int __ino64_t; typedef unsigned int __mode_t; typedef unsigned long int __nlink_t; typedef long int __off_t; typedef long int __off64_t; typedef int __pid_t; typedef struct { int __val[2]; } __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; t...