replace sparc-specific Int64 code with calls to platform-independent macros
[ghc-hetmet.git] / includes / rts / FileLock.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2007
4  *
5  * File locking support as required by Haskell 98
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef RTS_FILELOCK_H
10 #define RTS_FILELOCK_H
11
12 int  lockFile(int fd, dev_t dev, ino_t ino, int for_writing);
13 int  unlockFile(int fd);
14
15 #endif /* RTS_FILELOCK_H */