search for: __llseek

Displaying 20 results from an estimated 32 matches for "__llseek".

Did you mean: _llseek
2012 May 21
0
[klibc:master] lseek: give gcc a little optimization hint
...ned-off-by: H. Peter Anvin <hpa at zytor.com> --- usr/klibc/lseek.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/usr/klibc/lseek.c b/usr/klibc/lseek.c index a313bed..f262d19 100644 --- a/usr/klibc/lseek.c +++ b/usr/klibc/lseek.c @@ -18,13 +18,14 @@ extern int __llseek(int fd, unsigned long hi, unsigned long lo, off_t * res, off_t lseek(int fd, off_t offset, int whence) { + unsigned long long ullo = offset; off_t result; int rv; - rv = __llseek(fd, (unsigned long)(offset >> 32), (unsigned long)offset, + rv = __llseek(fd, (unsigned long)(ullo >&...
2016 Apr 13
0
[PATCH 1/1] x32 support
..., mode_t); +<64,x32> int openat(int, const char *, int, mode_t); ssize_t read(int, void *, size_t); ssize_t write(int, const void *, size_t); int close(int); -<64> off_t lseek(int, off_t, int); +<64,x32> off_t lseek(int, off_t, int); +#ifndef __x86_64__ <32> int _llseek::__llseek(int, unsigned long, unsigned long, off_t *, int); +#endif int dup(int); <?> int dup2(int, int); int dup3(int, int, int); @@ -275,8 +277,8 @@ long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long); /* * Low-level I/O (generally architecture-specific); */ -<i38...
2002 Dec 25
1
Trouble installing samba
..._stat64... no > checking for __stat64... no > checking for _fstat64... no > checking for __fstat64... no > checking for _lstat64... no > checking for __lstat64... no > checking for __sys_llseek... no > checking for llseek... no > checking for _llseek... no > checking for __llseek... no > checking for readdir64... (cached) no > checking for _readdir64... no > checking for __readdir64... no > checking for pread... no > checking for _pread... no > checking for __pread... no > checking for pread64... no > checking for _pread64... no > checking for __p...
1999 Oct 26
0
Solaris 7 not compiling HEAD code
...s checking for __fork... no checking for _stat64... yes checking for __stat64... no checking for _fstat64... yes checking for __fstat64... no checking for _lstat64... yes checking for __lstat64... no checking for __sys_llseek... no checking for llseek... yes checking for _llseek... yes checking for __llseek... no checking for readdir64... yes checking for _readdir64... yes checking for __readdir64... no checking for pread... yes checking for _pread... yes checking for __pread... no checking for pread64... yes checking for _pread64... yes checking for __pread64... no checking for pwrite... yes checking...
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
.... yes checking for __fork... yes checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... no checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) no checking for _readdir64... no checking for __readdir64... no checking for pread... yes checking for _pread... no checking for __pread... yes checking for pread64... no checking for _pread64... no checking for __pread64... no checking for pwrite... yes che...
2002 Oct 21
1
compilation probs...
...... no checking for __fork... no checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... no checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) no checking for _readdir64... no checking for __readdir64... no checking for pread... no checking for _pread... no checking for __pread... no checking for pread64... no checking for _pread64... no checking for __pread64... no checking for pwrite... no checki...
2002 Oct 29
1
Problem running ./configure
...... no checking for __fork... no checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... no checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) no checking for _readdir64... no checking for __readdir64... no checking for pread... no checking for _pread... no checking for __pread... no checking for pread64... no checking for _pread64... no checking for __pread64... no checking for pwrite... no checki...
2003 Jun 02
2
./configure --with-pam fails allways
...4 configure:6472: checking for _fstat64 configure:6472: checking for __fstat64 configure:6472: checking for _lstat64 configure:6472: checking for __lstat64 configure:6527: checking for __sys_llseek configure:6527: checking for llseek configure:6527: checking for _llseek configure:6527: checking for __llseek configure:6527: checking for readdir64 configure:6527: checking for _readdir64 configure:6527: checking for __readdir64 configure:6582: checking for pread configure:6582: checking for _pread configure:6582: checking for __pread configure:6582: checking for pread64 configure:6582: checking for _prea...
2002 Nov 21
0
please can someone help me?
...yes checking for __fork... no checking for _stat64... no checking for __stat64... yes checking for _fstat64... no checking for __fstat64... yes checking for _lstat64... no checking for __lstat64... yes checking for __sys_llseek... no checking for llseek... no checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) no checking for _readdir64... no checking for __readdir64... no checking for pread... no checking for _pread... no checking for __pread... no checking for pread64... no checking for _pread64... no checking for __pread64... no checking for pwrite... no checki...
2013 Nov 08
0
[PATCH 2/3] syscalls: Add syscalls needed by arm64
...mode_t); +<?64> int open(const char *, int, mode_t); <64> int openat(int, const char *, int, mode_t); ssize_t read(int, void *, size_t); ssize_t write(int, const void *, size_t); @@ -166,14 +167,14 @@ int close(int); <64> off_t lseek(int, off_t, int); <32> int _llseek::__llseek(int, unsigned long, unsigned long, off_t *, int); int dup(int); -int dup2(int, int); +<?> int dup2(int, int); int dup3(int, int, int); <i386> int fcntl64 at varadic::fcntl(int, int, unsigned long); <ppc64> int fcntl(int, int, unsigned long); <!i386,ppc64> int fcntl64,fc...
2013 Nov 12
0
[klibc:master] syscalls: Add syscalls needed by arm64
...mode_t); +<?64> int open(const char *, int, mode_t); <64> int openat(int, const char *, int, mode_t); ssize_t read(int, void *, size_t); ssize_t write(int, const void *, size_t); @@ -166,14 +167,14 @@ int close(int); <64> off_t lseek(int, off_t, int); <32> int _llseek::__llseek(int, unsigned long, unsigned long, off_t *, int); int dup(int); -int dup2(int, int); +<?> int dup2(int, int); int dup3(int, int, int); <i386> int fcntl64 at varadic::fcntl(int, int, unsigned long); <ppc64> int fcntl(int, int, unsigned long); <!i386,ppc64> int fcntl64,fc...
2002 Jul 26
1
creating unicode_map.437 and unicode_map.ISO8859-1?
Hello, I am running HP-UX 11 with Samba 2.2.5 binaries for HPUX and I keep getting the error that Samba can't find the unicode_map.xxx file. Well, I notice that all I have in /usr/local/samba/lib/codepages is codepage type files, not unicode. Why do the binaries not include a compiled make_unicodemap? I did download the source and found the .c file for the command. When I try to run
2002 Oct 11
0
[Fwd: samba-2.2.5 in Tru64 unix v4.0e]
...__stat64... (cached) no checking for _fstat64... (cached) no checking for __fstat64... (cached) no checking for _lstat64... (cached) no checking for __lstat64... (cached) no checking for __sys_llseek... (cached) no checking for llseek... (cached) no checking for _llseek... (cached) no checking for __llseek... (cached) no checking for readdir64... (cached) no checking for _readdir64... (cached) no checking for __readdir64... (cached) no checking for pread... (cached) yes checking for _pread... (cached) no checking for __pread... (cached) yes checking for pread64... (cached) no checking for _pread64......
2001 Jan 26
10
Please Help
I've downloaded the binary Samba 2.0.7 for AIX. I have no idea how to install this critter. Can anyone walk me thru this step by step? I think once i have it running, I'll be able to configure it based on the info at samba.org. It's just getting it running that troubles me. I have some experience with *nix, but not with compliling (sorry, no C compliler on system) and installing
2002 Jul 01
5
./configure --with-pam
...__stat64... (cached) no checking for _fstat64... (cached) no checking for __fstat64... (cached) no checking for _lstat64... (cached) no checking for __lstat64... (cached) no checking for __sys_llseek... (cached) no checking for llseek... (cached) yes checking for _llseek... (cached) no checking for __llseek... (cached) no checking for readdir64... (cached) yes checking for _readdir64... (cached) no checking for __readdir64... (cached) no checking for pread... (cached) yes checking for _pread... (cached) no checking for __pread... (cached) no checking for pread64... (cached) yes checking for _pread64.....
2004 Jan 15
2
Installation Problem !!!
.... no checking for __fork... yes checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... yes checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) yes checking for _readdir64... no checking for __readdir64... no checking for pread... yes checking for _pread... no checking for __pread... no checking for pread64... yes checking for _pread64... no checking for __pread64... yes checking for pwrite... yes c...
2002 May 06
1
A make problem with Samba 2.2.4
.... yes checking for __fork... yes checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... no checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) no checking for _readdir64... no checking for __readdir64... no checking for pread... yes checking for _pread... no checking for __pread... yes checking for pread64... no checking for _pread64... no checking for __pread64... no checking for pwrite... yes che...
2005 Aug 10
2
Compiling smbtorture
.... no checking for __fork... yes checking for _stat64... no checking for __stat64... no checking for _fstat64... no checking for __fstat64... no checking for _lstat64... no checking for __lstat64... no checking for __sys_llseek... no checking for llseek... yes checking for _llseek... no checking for __llseek... no checking for readdir64... (cached) yes checking for _readdir64... no checking for __readdir64... no checking for pread... yes checking for _pread... no checking for __pread... no checking for pread64... yes checking for _pread64... no checking for __pread64... yes checking for pwrite... yes c...
2018 Dec 06
3
Build error while upgrading samba 4.9.3
...: not found Checking for llseek : ok Checking for _llseek : not found Checking for macro _llseek : not found Checking for __llseek : not found Checking for macro __llseek : not found Checking for _lseek : not found Checking for macro _lseek...
2008 Jul 08
0
Report this to samba-technical@samba.org, ldap_initialize error
...s checking for __fork... no checking for _stat64... yes checking for __stat64... no checking for _fstat64... yes checking for __fstat64... no checking for _lstat64... yes checking for __lstat64... no checking for __sys_llseek... no checking for llseek... yes checking for _llseek... yes checking for __llseek... no checking for readdir64... (cached) yes checking for _readdir64... yes checking for __readdir64... no checking for pread... (cached) yes checking for _pread... yes checking for __pread... no checking for pread64... yes checking for _pread64... yes checking for __pread64... no checking for pwri...