diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-15 14:28:47 (GMT) | 
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-15 14:28:47 (GMT) | 
| commit | 66a15c6f8be47c3acbdddffadc67f50dec8a56e6 (patch) | |
| tree | edaf81ee6d40edeacc9f3e2093ddcb2ba302c620 /unix/tclUnixPipe.c | |
| parent | 2827a2692798a7a0ec46e684a4ccc83afb39859e (diff) | |
| download | tcl-66a15c6f8be47c3acbdddffadc67f50dec8a56e6.zip tcl-66a15c6f8be47c3acbdddffadc67f50dec8a56e6.tar.gz tcl-66a15c6f8be47c3acbdddffadc67f50dec8a56e6.tar.bz2 | |
TIP#72 implementation.  See ChangeLog for details.
This version builds clean on Solaris/SPARC, with GCC and CC, both with and
without threads and both in 32-bit and 64-bit mode.
Diffstat (limited to 'unix/tclUnixPipe.c')
| -rw-r--r-- | unix/tclUnixPipe.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c index a7facd6..f3f67f5 100644 --- a/unix/tclUnixPipe.c +++ b/unix/tclUnixPipe.c @@ -10,7 +10,7 @@   * See the file "license.terms" for information on usage and redistribution   * of this file, and for a DISCLAIMER OF ALL WARRANTIES.   * - * RCS: @(#) $Id: tclUnixPipe.c,v 1.20 2002/02/08 02:52:54 dgp Exp $ + * RCS: @(#) $Id: tclUnixPipe.c,v 1.21 2002/02/15 14:28:50 dkf Exp $   */  #include "tclInt.h" @@ -140,7 +140,7 @@ TclpOpenFile(fname, mode)      Tcl_DString ds;      native = Tcl_UtfToExternalDString(NULL, fname, -1, &ds); -    fd = open(native, mode, 0666);			/* INTL: Native. */ +    fd = Tcl_PlatformOpen(native, mode, 0666);		/* INTL: Native. */      Tcl_DStringFree(&ds);      if (fd != -1) {          fcntl(fd, F_SETFD, FD_CLOEXEC); @@ -151,7 +151,7 @@ TclpOpenFile(fname, mode)  	 */  	if (mode & O_WRONLY) { -	    lseek(fd, (off_t) 0, SEEK_END); +	    Tcl_PlatformSeek(fd, (Tcl_SeekOffset) 0, SEEK_END);  	}  	/* @@ -215,7 +215,7 @@ TclpCreateTempFile(contents)  	    return NULL;  	}  	Tcl_DStringFree(&dstring); -	lseek(fd, (off_t) 0, SEEK_SET); +	Tcl_PlatformSeek(fd, (Tcl_SeekOffset) 0, SEEK_SET);      }      return MakeFile(fd);  } | 
