~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to rtl/unix/bunxovlh.inc

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2005-05-30 11:59:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050530115910-x5pbzm4qqta4i94h
Tags: 2.0.0-2
debian/fp-compiler.postinst.in: forgot to reapply the patch that
correctly creates the slave link to pc(1).  (Closes: #310907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: bunxovlh.inc,v 1.4 2003/12/30 12:24:01 marco Exp $
 
2
    $Id: bunxovlh.inc,v 1.8 2005/02/14 17:13:31 peter Exp $
3
3
    This file is part of the Free Pascal run time library.
4
4
    Copyright (c) 2002 by Marco van de Voort
5
5
 
21
21
Function  FpChmod   (path : AnsiString; Mode : TMode): cInt;
22
22
Function  FpChown   (path : AnsiString; owner : TUid; group : TGid): cInt;
23
23
Function  FpUtime   (path : AnsiString; times : putimbuf): cInt;
24
 
Function  FpGetcwd  (path:AnsiString; siz:TSize):AnsiString;
 
24
Function  FpGetcwd : AnsiString;
25
25
Function  FpExecve  (path : AnsiString; argv : ppchar; envp: ppchar): cInt;
26
26
Function  FpExecv   (path : AnsiString; argv : ppchar): cInt;
27
27
Function  FpOpendir (dirname : AnsiString): pDir;
38
38
Function  FpRename  (old  : AnsiString;newpath: AnsiString): cInt;
39
39
Function  FpStat    (path: AnsiString; var buf : stat): cInt;
40
40
Function  FpStat    (path: String; var buf : stat): cInt;
41
 
Function  FpAccess  (pathname : AnsiString; aMode : cInt): cInt; 
 
41
Function  FpAccess  (pathname : AnsiString; aMode : cInt): cInt;
 
42
function  FpWaitPid (pid : TPid; Var Status : cInt; Options : cint) : TPid;
42
43
 
43
44
Function  FPFStat   (var F:Text;Var Info:stat):Boolean;
44
45
Function  FPFStat   (var F:File;Var Info:stat):Boolean;
48
49
Function  FpSignal  (signum:longint;Handler:signalhandler):signalhandler;
49
50
Function  FpRead    (fd : cInt; var buf; nbytes : TSize): TSsize;
50
51
Function  FpWrite   (fd : cInt; const buf; nbytes : TSize): TSsize;
51
 
Function  FpDup     (var oldfile,newfile:text):cint;
 
52
Function  FpDup     (var oldfile,newfile:text):cint;
52
53
Function  FpDup     (var oldfile,newfile:file):cint;
53
54
Function  FpDup2    (var oldfile,newfile:text):cint;
54
55
Function  FpDup2    (var oldfile,newfile:file):cint;
83
84
Function  fpS_ISLNK       (m:TMode) : Boolean;
84
85
Function  fpS_ISSOCK      (m:TMode) : Boolean;
85
86
 
86
 
Function  wifexited    (Status : cInt): cInt;
 
87
Function  wifexited    (Status : cInt): boolean;
87
88
Function  wexitStatus  (Status : cInt): cInt;
88
89
Function  wstopsig     (Status : cInt): cInt;
89
 
Function  wifsignaled  (Status : cInt): cInt;
 
90
Function  wifsignaled  (Status : cInt): boolean;
90
91
Function  wtermsig     (Status : cInt): cInt;
91
92
 
92
 
 
93
 
 
 
93
Function fpReadLink(Name:ansistring):ansistring;
94
94
{
95
95
 $Log: bunxovlh.inc,v $
96
 
 Revision 1.4  2003/12/30 12:24:01  marco
97
 
  * FPC_USE_LIBC
98
 
 
99
 
 Revision 1.3  2003/09/14 20:15:01  marco
100
 
  * Unix reform stage two. Remove all calls from Unix that exist in Baseunix.
101
 
 
102
 
 Revision 1.2  2003/06/01 16:28:41  marco
103
 
  * Enhancements to make the compiler baseunix using.
104
 
 
105
 
 Revision 1.1  2002/12/18 16:49:02  marco
106
 
  * New RTL. Linux system unit and baseunix operational.
107
 
 
 
96
 Revision 1.8  2005/02/14 17:13:31  peter
 
97
   * truncate log
 
98
 
 
99
 Revision 1.7  2005/02/13 20:01:38  peter
 
100
   * include file cleanup
108
101
 
109
102
}
110
103
 
111
 
 
 
 
b'\\ No newline at end of file'
 
104