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 = ../../../.. PATH_TO_TOP = ../../../..
@ -42,7 +42,8 @@ OBJECTS_MISC = \
misc/spawn.o \ misc/spawn.o \
misc/path.o \ misc/path.o \
misc/pdata.o \ misc/pdata.o \
misc/fdtable.o misc/fdtable.o \
misc/tls.o
OBJECTS_DIRENT = \ OBJECTS_DIRENT = \
dirent/opendir.o \ dirent/opendir.o \
@ -88,16 +89,27 @@ OBJECTS_PTHREAD = \
pthread/mutex.o \ pthread/mutex.o \
pthread/self.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 = \ OBJECTS_SYS_UTSNAME = \
sys/utsname/uname.o sys/utsname/uname.o
OBJECTS_UNISTD = \ OBJECTS_UNISTD = \
unistd/access.o \
unistd/close.o \ unistd/close.o \
unistd/dup.o \ unistd/dup.o \
unistd/fork.o \
unistd/getcwd.o \ unistd/getcwd.o \
unistd/getpid.o \ unistd/getpid.o \
unistd/getppid.o \ unistd/getppid.o \
unistd/read.o \ unistd/read.o \
unistd/sleep.o \
unistd/write.o unistd/write.o
OBJECTS = \ OBJECTS = \
@ -112,6 +124,7 @@ OBJECTS = \
$(OBJECTS_STDLIB) \ $(OBJECTS_STDLIB) \
$(OBJECTS_STRING) \ $(OBJECTS_STRING) \
$(OBJECTS_PTHREAD) \ $(OBJECTS_PTHREAD) \
$(OBJECTS_SYS_STAT) \
$(OBJECTS_SYS_UTSNAME) \ $(OBJECTS_SYS_UTSNAME) \
$(OBJECTS_UNISTD) $(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 ; ReactOS POSIX+ Client Library
; ;
@ -162,18 +162,32 @@ strstr
;implemented internally ;implemented internally
strdup strdup
;sys/stat
chmod
fchmod
fstat
lstat
mkdir
mkfifo
mknod
stat
umask
;sys/utsname ;sys/utsname
uname uname
;unistd ;unistd
access
close close
dup dup
dup2 dup2
fork
getcwd getcwd
getpid getpid
getppid getppid
pread pread
read read
sleep
write write
;wchar ;wchar
@ -208,4 +222,7 @@ RtlUpcaseUnicodeChar
RtlUpcaseUnicodeToMultiByteN RtlUpcaseUnicodeToMultiByteN
RtlZeroMemory RtlZeroMemory
;WARNING: PRELIMINARY CODE FOR DEBUGGING PURPOSES ONLY - DO NOT CHANGE
__PdxGetProcessData
;EOF ;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 ; ReactOS POSIX+ Client Library
; ;
@ -162,18 +162,32 @@ strstr=NTDLL.strstr
;implemented internally ;implemented internally
strdup strdup
;sys/stat
chmod=chmod
fchmod=fchmod
fstat=fstat
lstat=lstat
mkdir=mkdir
mkfifo=mkfifo
mknod=mknod
stat=stat
umask=umask
;sys/utsname ;sys/utsname
uname=uname uname=uname
;unistd ;unistd
access=access
close=close close=close
dup=dup dup=dup
dup2=dup2 dup2=dup2
fork=fork
getcwd=getcwd getcwd=getcwd
getpid=getpid getpid=getpid
getppid=getppid getppid=getppid
pread=pread pread=pread
read=read read=read
sleep=sleep
write=write write=write
;wchar ;wchar
@ -208,4 +222,7 @@ RtlUpcaseUnicodeChar=NTDLL.RtlUpcaseUnicodeChar
RtlUpcaseUnicodeToMultiByteN=NTDLL.RtlUpcaseUnicodeToMultiByteN RtlUpcaseUnicodeToMultiByteN=NTDLL.RtlUpcaseUnicodeToMultiByteN
RtlZeroMemory=NTDLL.RtlZeroMemory RtlZeroMemory=NTDLL.RtlZeroMemory
;WARNING: PRELIMINARY CODE FOR DEBUGGING PURPOSES ONLY - DO NOT CHANGE
__PdxGetProcessData=__PdxGetProcessData
;EOF ;EOF