New calls and new exported functions

svn path=/trunk/; revision=2967
This commit is contained in:
KJK::Hyperion 2002-05-17 02:21:54 +00:00
parent da32d20e2c
commit aec0b9bcfc
3 changed files with 79 additions and 32 deletions

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.7 2002/03/23 18:13:33 hyperion Exp $
# $Id: Makefile,v 1.8 2002/05/17 02:21:54 hyperion Exp $
PATH_TO_TOP = ../../../..
@ -42,7 +42,8 @@ OBJECTS_MISC = \
misc/spawn.o \
misc/path.o \
misc/pdata.o \
misc/fdtable.o
misc/fdtable.o \
misc/tls.o
OBJECTS_DIRENT = \
dirent/opendir.o \
@ -88,16 +89,27 @@ OBJECTS_PTHREAD = \
pthread/mutex.o \
pthread/self.o
OBJECTS_SYS_STAT = \
sys/stat/chmod.o \
sys/stat/mkdir.o \
sys/stat/mkfifo.o \
sys/stat/mknod.o \
sys/stat/stat.o \
sys/stat/umask.o
OBJECTS_SYS_UTSNAME = \
sys/utsname/uname.o
OBJECTS_UNISTD = \
unistd/access.o \
unistd/close.o \
unistd/dup.o \
unistd/fork.o \
unistd/getcwd.o \
unistd/getpid.o \
unistd/getppid.o \
unistd/read.o \
unistd/sleep.o \
unistd/write.o
OBJECTS = \
@ -112,6 +124,7 @@ OBJECTS = \
$(OBJECTS_STDLIB) \
$(OBJECTS_STRING) \
$(OBJECTS_PTHREAD) \
$(OBJECTS_SYS_STAT) \
$(OBJECTS_SYS_UTSNAME) \
$(OBJECTS_UNISTD)

View file

@ -1,4 +1,4 @@
; $Id: psxdll.def,v 1.7 2002/03/21 22:47:05 hyperion Exp $
; $Id: psxdll.def,v 1.8 2002/05/17 02:21:54 hyperion Exp $
;
; ReactOS POSIX+ Client Library
;
@ -162,18 +162,32 @@ strstr
;implemented internally
strdup
;sys/stat
chmod
fchmod
fstat
lstat
mkdir
mkfifo
mknod
stat
umask
;sys/utsname
uname
;unistd
access
close
dup
dup2
fork
getcwd
getpid
getppid
pread
read
sleep
write
;wchar
@ -208,4 +222,7 @@ RtlUpcaseUnicodeChar
RtlUpcaseUnicodeToMultiByteN
RtlZeroMemory
;WARNING: PRELIMINARY CODE FOR DEBUGGING PURPOSES ONLY - DO NOT CHANGE
__PdxGetProcessData
;EOF

View file

@ -1,4 +1,4 @@
; $Id: psxdll.edf,v 1.6 2002/03/21 22:47:05 hyperion Exp $
; $Id: psxdll.edf,v 1.7 2002/05/17 02:21:54 hyperion Exp $
;
; ReactOS POSIX+ Client Library
;
@ -162,18 +162,32 @@ strstr=NTDLL.strstr
;implemented internally
strdup
;sys/stat
chmod=chmod
fchmod=fchmod
fstat=fstat
lstat=lstat
mkdir=mkdir
mkfifo=mkfifo
mknod=mknod
stat=stat
umask=umask
;sys/utsname
uname=uname
;unistd
access=access
close=close
dup=dup
dup2=dup2
fork=fork
getcwd=getcwd
getpid=getpid
getppid=getppid
pread=pread
read=read
sleep=sleep
write=write
;wchar
@ -208,4 +222,7 @@ RtlUpcaseUnicodeChar=NTDLL.RtlUpcaseUnicodeChar
RtlUpcaseUnicodeToMultiByteN=NTDLL.RtlUpcaseUnicodeToMultiByteN
RtlZeroMemory=NTDLL.RtlZeroMemory
;WARNING: PRELIMINARY CODE FOR DEBUGGING PURPOSES ONLY - DO NOT CHANGE
__PdxGetProcessData=__PdxGetProcessData
;EOF