search for: lchown32

Displaying 11 results from an estimated 11 matches for "lchown32".

Did you mean: chown32
2013 Oct 09
1
[PATCH 0/1] Porting klibc to AArch64
...aving a clean start without support for deprecated calls. e.g. one part of the patch is: -int _newselect,select::select(int, fd_set *, fd_set *, fd_set *, struct timeval *); +<!aarch64> int _newselect,select::select(int, fd_set *, fd_set *, fd_set *, struct timeval *); Others include: dup2, lchown32, chown32, stat64, lstat64, readlink, symlink, rmdir, mkdir, mknod ... There was a talk at FOSDEM 2013 which covered these changes. There is also documentation available from ARM, if you would like it. http://people.linaro.org/~rikuvoipio/aarch64-talk/#/ http://people.linaro.org/~rikuvoipio/aarch...
2005 Sep 22
2
repeatable disconnections when rsyncing over ssh
...lt;... waitpid resumed> 0xbfffd2f4, WNOHANG) = 0 28461 lstat64("...", <unfinished ...> 28445 sigreturn( <unfinished ...> 28461 <... lstat64 resumed> {st_mode=S_IFREG|0600, st_size=262144, ...}) = 0 28445 <... sigreturn resumed> ) = ? (mask now []) 28461 lchown32("...", 8, 12 <unfinished ... > 28445 write(4, "\10\0YK\n\0\0\240\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ZK\n\0\10\0 [K\n\0\0\240\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\\K\n\0\0\240\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0]K\n\0\10\0kK\n\0\10\0lK\n\0\0\240\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0mK\n\0\10\0\2...
2005 Aug 08
3
[PATCH] add inotify system calls
I've added this to our klibc copy in the udev tree to support the recently added Inotify. Thanks, Kay -------------- next part -------------- diff --git a/klibc/klibc/SYSCALLS.def b/klibc/klibc/SYSCALLS.def --- a/klibc/klibc/SYSCALLS.def +++ b/klibc/klibc/SYSCALLS.def @@ -114,6 +114,9 @@ int lchown32,lchown::lchown(const char * int getcwd::__getcwd(char *, size_t) <?> int utime(const char *, const struct utimbuf *) <?> int utimes(const char *, const struct timeval *) +<?> int inotify_init(void) +<?> int inotify_add_watch(int, const char *, __u32) +<?> int inotif...
2003 Jul 20
1
rsync on cygwin is hanging
...ENOENT (No such file or directory) mkdir("wudnld20.tmp", 040700) = 0 lstat64("wudnld20.tmp", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 time(NULL) = 1058644307 utime("wudnld20.tmp", [2003/07/19-15:51:47, 2002/01/25-01:17:08]) = 0 lchown32(0x8074940, 0x220, 0x201) = 0 write(1, "wudnld20.tmp/\n", 14) = 14 select(8, [7], [4], NULL, {60, 0}) = 1 (out [4], left {60, 0}) write(4, "\274\2\0\0\0\0\0\0\202\36\0\0\0\0\0\0\274\2\0\0\0\0\0\0"..., 3916) = 3916 select(8, [3 7], NULL, NULL, {60, 0})...
2013 Nov 08
0
[PATCH 2/3] syscalls: Add syscalls needed by arm64
...tdents::getdents(unsigned int, struct dirent *, unsigned int); -int chown32,chown::chown(const char *, uid_t, gid_t); +<?> int chown32,chown::chown(const char *, uid_t, gid_t); int fchown32,fchown::fchown(int, uid_t, gid_t); <?> int fchownat(int, const char *, uid_t, gid_t, int); -int lchown32,lchown::lchown(const char *, uid_t, gid_t); +<?> int lchown32,lchown::lchown(const char *, uid_t, gid_t); int getcwd::__getcwd(char *, size_t); <?> int utime(const char *, const struct utimbuf *); <?> int utimes(const char *, const struct timeval *); <?> int futimesat(in...
2013 Nov 12
0
[klibc:master] syscalls: Add syscalls needed by arm64
...tdents::getdents(unsigned int, struct dirent *, unsigned int); -int chown32,chown::chown(const char *, uid_t, gid_t); +<?> int chown32,chown::chown(const char *, uid_t, gid_t); int fchown32,fchown::fchown(int, uid_t, gid_t); <?> int fchownat(int, const char *, uid_t, gid_t, int); -int lchown32,lchown::lchown(const char *, uid_t, gid_t); +<?> int lchown32,lchown::lchown(const char *, uid_t, gid_t); int getcwd::__getcwd(char *, size_t); <?> int utime(const char *, const struct utimbuf *); <?> int utimes(const char *, const struct timeval *); <?> int futimesat(in...
2023 Jan 14
1
[klibc:time64] time: Use 64-bit time types on all architectures
..._T diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def index d46bb548..660efc66 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -140,7 +140,8 @@ int fchown32,fchown::fchown(int, uid_t, gid_t); <?> int fchownat(int, const char *, uid_t, gid_t, int); <?> int lchown32,lchown::lchown(const char *, uid_t, gid_t); int getcwd::__getcwd(char *, size_t); -int utimensat(int, const char *, const struct timespec *, int); +<32> int utimensat_time64::utimensat(int, const char *, const struct timespec *, int); +<64> int utimensat(int, const char *, const struct...
2008 Jun 04
5
DO NOT REPLY [Bug 5520] New: Rsync cannot copy to a vfat partition on kernel 2.6.25+
https://bugzilla.samba.org/show_bug.cgi?id=5520 Summary: Rsync cannot copy to a vfat partition on kernel 2.6.25+ Product: rsync Version: 3.0.3 Platform: All URL: https://bugzilla.redhat.com/show_bug.cgi?id=449080 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core
2013 Oct 09
5
[PATCH 0/1] Porting klibc to AArch64
Hi All: We have some patches to port klibc to ArmV8. The first set of patches from Neil Williams fixes the build issues. The second set of patches from Anil Singhar fixes functionalities. The following files have changed in the second set of patches ------------------------------------------------------------------------------------------ usr/include/arch/aarch64/klibc/archconfig.h
2013 Nov 11
5
[PATCH V2 0/3] Introduce arm64 support
Hello, Here is V2 of the arm64 support for klibc patch set. Notable changes since the original series: * fp regs dropped from setjmp/longjmp * chmod, lstat and stat re-implemented with *at functions. * open64 merged into open. As with the original, this series is to be applied against the latest klibc, just after 25a66fa README.klibc: update build information V2 has been tested on x86_64
2013 Nov 08
9
[PATCH 0/3] Introduce arm64 support
Hello, This series introduces arm64 support to klibc. I've rebased the work from Neil Williams and Anil Singhar into the following three patches. Most of the code changes are due to new syscall implementations being needed for arm64 as a only a minimal set of syscalls are defined in the arm64 kernel. This series is to be applied against the latest klibc, just after 25a66fa README.klibc: