GNU unistd.h has this bit of magic:

/* Move FD's file position to OFFSET bytes from the
   beginning of the file (if WHENCE is SEEK_SET),
   the current position (if WHENCE is SEEK_CUR),
   or the end of the file (if WHENCE is SEEK_END).
   Return the new file position.  */
#ifndef __USE_FILE_OFFSET64
extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;                                                                    
#else
# ifdef __REDIRECT_NTH
extern __off64_t __REDIRECT_NTH (lseek,
                              (int __fd, __off64_t __offset, int __whence),
                               lseek64);                                                                                                    
# else
#  define lseek lseek64
# endif
#endif
#ifdef __USE_LARGEFILE64
extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence) __THROW;                                                              
#endif

What does __REDIRECT_NTH mean?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

It is a macro in the namespace reserved to the implementation. It only appears on your platform; it does whatever is appropriate on your platform because the implementation decided it is correct.

If you can't find out easily, you probably shouldn't be using it directly. Even if you can find out, there's a good chance you should not be using it directly.

That said, it looks as though it arranges for calls to lseek() to be translated to lseek64(), presumably to provide support for large files (bigger than 2 GiB) on 32-bit machines (or under the 32-bit system API on your 64-bit machine).

link|improve this answer
It's actually doing the reverse. Because of all of those squirlly #defines, it's actually defining lseek() to take a 64-bit number as the second argument and lseek64 is not being prototyped. However lseek64 is still in the library. My problem is that my code needs to run on many different systems, so I explicitly check to see if lseek64 is available and, if so, I use it. On this system (FC14) I'm getting the error that there is no prototype for lseek64. Of course, I could just create one myself. I'd rather not go through all of this nonsense... – vy32 Dec 19 '10 at 2:40
... but if I don't do the nonsense, my program breaks on all sorts of legacy systems that are still in use. – vy32 Dec 19 '10 at 2:42
@vy32: OK - it is hard to tell which way round it is working without knowing the platform or seeing the macro definition. How are you doing your test for lseek64()? Are you using autoconf or one its relatives? If lseek64() is being defined (in the library) not prototyped, you have to make a judgement call - do you provide an appropriate declaration for it, or do you fall back on lseek(). Presumably, your code has appropriate mappable type definitions such that you can handle all the types you need (32-bit or 64-bit) and you can determine the correct values/names on this platform. – Jonathan Leffler Dec 19 '10 at 3:36
@jonathan leffler - Thanks for your comments. The unistd.h is the standard GNU unistd.h from FC14 (also present on Debian). My code won't work on a system without a 64-bit lseek. I guess I just need to prototype it. It's very frustrating. I wish there was some easy way to detect non-standard implementations. – vy32 Dec 19 '10 at 3:41
1  
@vy32: Can't you just test for the length of off_t? – caf Dec 19 '10 at 12:55
show 5 more comments
feedback

Never touch the largefile hacks yourself. Always include -D_FILE_OFFSET_BITS=64 in your CFLAGS and you can never go wrong.

link|improve this answer
Well, actually, that's not true. I have -D_FILE_OFFSET_BITS=64 in my configure file. The problem is that people are using my code on versions of Unix that do not have _FILE_OFFSET_BITS. – vy32 Dec 19 '10 at 16:39
Do these versions of unix have a different way to enable a 64-bit file offset compilation environment? Try sysconf _POSIX_V6_ILP32_OFFBIG or similar. If they don't, then IMO you shouldn't try hacking the OS to force it. Just tell users of these broken systems they should complain to their vendor to fix large file support or switch to a decent OS. – R.. Dec 19 '10 at 16:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.