search for: __stub_

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

Did you mean: __stub
2014 Jan 09
1
Re: RFC: copy-attributes command
...ve one of these calls. > The xattr code (in general) is incredibly complex because of all these > tests. > > I guess Mac OS X probably has none of them, and RHEL 5 / Ubuntu 10.10 > probably had only some of them. At least in the gnu/stubs-$bits.h of RHEL 5 they are not declared as __stub_*, so they should be implemented (and being Linux, it means that most probably there are the right syscalls for them). So I would not think the change proposed below (and implemented) would cause regressions in such old Linux systems. > We don't care about RHEL 5 since it > now has its...
2023 Mar 16
1
[libnbd PATCH v4 3/3] lib/utils: add unit test for async-signal-safe assert()
...ern "C" 2036 #endif 2037 char $2 (); 2038 /* The GNU C library defines this for functions which it implements 2039 to always fail with ENOSYS. Some functions are actually named 2040 something starting with __ and the normal name is an alias. */ 2041 #if defined __stub_$2 || defined __stub___$2 2042 choke me 2043 #endif 2044 2045 int 2046 main () 2047 { 2048 return $2 (); 2049 ; 2050 return 0; 2051 } 2052 _ACEOF 2053 if ac_fn_c_try_link "$LINENO"; then : 2054 eval "$3=yes" 2055 else 2056 eval...
2014 Jan 07
8
RFC: copy-attributes command
Hi, attached there is a prototype of patch for adding a new copy-attributes command. Such command would allow copy the attributes of a "file" to another, so for example in guestfish: copy-attributes foo bar permissions:true xattributes:false would only copy the permissions of foo to bar, not copying its extended attributes too. Just few notes: - my first daemon command, so