mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 06:55:55 +00:00
New calls and new exported functions
svn path=/trunk/; revision=2967
This commit is contained in:
parent
da32d20e2c
commit
aec0b9bcfc
3 changed files with 79 additions and 32 deletions
|
@ -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 = ../../../..
|
||||||
|
|
||||||
|
@ -34,15 +34,16 @@ include $(PATH_TO_TOP)/rules.mak
|
||||||
include $(TOOLS_PATH)/helper.mk
|
include $(TOOLS_PATH)/helper.mk
|
||||||
|
|
||||||
OBJECTS_MISC = \
|
OBJECTS_MISC = \
|
||||||
misc/main.o \
|
misc/main.o \
|
||||||
misc/init.o \
|
misc/init.o \
|
||||||
misc/heap.o \
|
misc/heap.o \
|
||||||
misc/interlock.o \
|
misc/interlock.o \
|
||||||
misc/safeobj.o \
|
misc/safeobj.o \
|
||||||
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 \
|
||||||
|
@ -50,13 +51,13 @@ OBJECTS_DIRENT = \
|
||||||
dirent/closedir.o
|
dirent/closedir.o
|
||||||
|
|
||||||
OBJECTS_DLFCN = \
|
OBJECTS_DLFCN = \
|
||||||
dlfcn/dlopen.o \
|
dlfcn/dlopen.o \
|
||||||
dlfcn/dlclose.o \
|
dlfcn/dlclose.o \
|
||||||
dlfcn/dlsym.o \
|
dlfcn/dlsym.o \
|
||||||
dlfcn/dlerror.o
|
dlfcn/dlerror.o
|
||||||
|
|
||||||
OBJECTS_ERRNO = \
|
OBJECTS_ERRNO = \
|
||||||
errno/errno.o
|
errno/errno.o
|
||||||
|
|
||||||
OBJECTS_FCNTL = \
|
OBJECTS_FCNTL = \
|
||||||
fcntl/open.o \
|
fcntl/open.o \
|
||||||
|
@ -74,45 +75,57 @@ OBJECTS_SIGNAL = \
|
||||||
|
|
||||||
OBJECTS_STDLIB = \
|
OBJECTS_STDLIB = \
|
||||||
stdlib/abort.o \
|
stdlib/abort.o \
|
||||||
stdlib/malloc.o \
|
stdlib/malloc.o \
|
||||||
stdlib/exit.o
|
stdlib/exit.o
|
||||||
|
|
||||||
OBJECTS_STRING = \
|
OBJECTS_STRING = \
|
||||||
string/strdup.o \
|
string/strdup.o \
|
||||||
string/strerror.o
|
string/strerror.o
|
||||||
|
|
||||||
OBJECTS_PTHREAD = \
|
OBJECTS_PTHREAD = \
|
||||||
pthread/create.o \
|
pthread/create.o \
|
||||||
pthread/exit.o \
|
pthread/exit.o \
|
||||||
pthread/join.o \
|
pthread/join.o \
|
||||||
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 = \
|
||||||
$(OBJECTS_MISC) \
|
$(OBJECTS_MISC) \
|
||||||
$(OBJECTS_DIRENT) \
|
$(OBJECTS_DIRENT) \
|
||||||
$(OBJECTS_DLFCN) \
|
$(OBJECTS_DLFCN) \
|
||||||
$(OBJECTS_ERRNO) \
|
$(OBJECTS_ERRNO) \
|
||||||
$(OBJECTS_FCNTL) \
|
$(OBJECTS_FCNTL) \
|
||||||
$(OBJECTS_LIBGEN) \
|
$(OBJECTS_LIBGEN) \
|
||||||
$(OBJECTS_SCHED) \
|
$(OBJECTS_SCHED) \
|
||||||
$(OBJECTS_SIGNAL) \
|
$(OBJECTS_SIGNAL) \
|
||||||
$(OBJECTS_STDLIB) \
|
$(OBJECTS_STDLIB) \
|
||||||
$(OBJECTS_STRING) \
|
$(OBJECTS_STRING) \
|
||||||
$(OBJECTS_PTHREAD) \
|
$(OBJECTS_PTHREAD) \
|
||||||
$(OBJECTS_SYS_UTSNAME) \
|
$(OBJECTS_SYS_STAT) \
|
||||||
|
$(OBJECTS_SYS_UTSNAME) \
|
||||||
$(OBJECTS_UNISTD)
|
$(OBJECTS_UNISTD)
|
||||||
|
|
||||||
DEP_OBJECTS = $(OBJECTS)
|
DEP_OBJECTS = $(OBJECTS)
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue