FCNTL.H

2012-11-26 Thread Tony Thigpen
Could someone send me a copy of FCNTL.H? (offlist!) I need to compare some of the values to those used by our VSE IP product. Thanks. -- Tony Thigpen

Re: FCNTL.H

2012-11-27 Thread Tony Thigpen
I did receive a copy of fcntl.h, but it is missing one value that I need, F_DUPFD2. Could someone tell me the value for F_DUPFD2? Tony Thigpen -Original Message - From: Tony Thigpen Sent: 11/26/2012 04:29 PM Could someone send me a copy of FCNTL.H? (offlist!) I need to compare some

Re: FCNTL.H

2012-11-27 Thread Miklos Szigetvari
Hi If you mean this: #define F_SETFL 4 #define F_GETLK 5 #define F_SETLK 6 #define F_SETLKW 7 #define F_DUPFD2 8 #define F_CLOSFD 9 #define _F_GETFL 3 On 27.11.2012 12:31, Tony Thigpen wrote: I did receive a copy of fcntl.h, but it is missing one

Re: FCNTL.H

2012-11-27 Thread Tony Thigpen
_F_GETFL 3 On 27.11.2012 12:31, Tony Thigpen wrote: I did receive a copy of fcntl.h, but it is missing one value that I need, F_DUPFD2. Could someone tell me the value for F_DUPFD2? Tony Thigpen -Original Message - From: Tony Thigpen Sent: 11/26/2012 04:29 PM Could someone

Re: FCNTL.H

2012-11-27 Thread Thomas David Rivers
Hi Tony, The values defined in are different in different implementations. Here's the ones from the BSD version (which probably match Linux): /* command values */ #define F_DUPFD 0 /* duplicate file descriptor */ #define F_GETFD 1 /* get file desc