introducing __PdxSpawnPosixProcess(). Still some linker warnings, will solve tomorrow

svn path=/trunk/; revision=2681
This commit is contained in:
KJK::Hyperion 2002-03-07 06:07:31 +00:00
parent a681b85839
commit d57ab3df35
3 changed files with 32 additions and 30 deletions

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.3 2002/02/24 22:14:05 ea Exp $
# $Id: Makefile,v 1.4 2002/03/07 06:07:31 hyperion Exp $
PATH_TO_TOP = ../../../..
@ -39,6 +39,7 @@ OBJECTS_MISC = \
misc/heap.o \
misc/interlock.o \
misc/safeobj.o \
misc/spawn.o \
misc/path.o \
misc/fdtable.o

View file

@ -1,4 +1,4 @@
; $Id: psxdll.def,v 1.3 2002/02/24 22:14:05 ea Exp $
; $Id: psxdll.def,v 1.4 2002/03/07 06:07:31 hyperion Exp $
;
; ReactOS POSIX+ Client Library
;
@ -6,12 +6,6 @@
LIBRARY PSXDLL.DLL
EXPORTS
;misc/init
__PdxInitializeData@8
;misc/heap
GetProcessHeap@0
;dirent
opendir
readdir
@ -35,21 +29,27 @@ fcntl
basename
;misc
;path
__PdxPosixPathGetNextComponent_A
__PdxPosixPathGetNextComponent_U
__PdxPosixPathResolve_A
__PdxPosixPathResolve_U
__PdxPosixPathNameToNtPathName
;fdtable
;misc/fdtable
__fdtable_init
__fdtable_free
__fdtable_entry_nextavail
__fdtable_entry_add
__fdtable_entry_remove
__fdtable_entry_get
;safeobj
;misc/heap
GetProcessHeap
;misc/init
__PdxInitializeData
;misc/path
__PdxPosixPathGetNextComponent_A
__PdxPosixPathGetNextComponent_U
__PdxPosixPathResolve_A
__PdxPosixPathResolve_U
__PdxPosixPathNameToNtPathName
;misc/safeobj
__safeobj_validate
;misc/spawn
__PdxSpawnPosixProcess
;pthread
pthread_create

View file

@ -1,4 +1,4 @@
; $Id: psxdll.edf,v 1.3 2002/02/24 22:14:05 ea Exp $
; $Id: psxdll.edf,v 1.4 2002/03/07 06:07:31 hyperion Exp $
;
; ReactOS POSIX+ Client Library
;
@ -6,11 +6,6 @@
LIBRARY PSXDLL.DLL
EXPORTS
;misc/init
__PdxInitializeData=__PdxInitializeData@8
;misc/heap
GetProcessHeap=GetProcessHeap@0
;dirent
opendir=opendir
readdir=readdir
@ -34,21 +29,27 @@ fcntl=fcntl
basename=basename
;misc
;path
__PdxPosixPathGetNextComponent_A=__PdxPosixPathGetNextComponent_A
__PdxPosixPathGetNextComponent_U=__PdxPosixPathGetNextComponent_U
__PdxPosixPathResolve_A=__PdxPosixPathResolve_A
__PdxPosixPathResolve_U=__PdxPosixPathResolve_U
__PdxPosixPathNameToNtPathName=__PdxPosixPathNameToNtPathName
;fdtable
;misc/fdtable
__fdtable_init=__fdtable_init
__fdtable_free=__fdtable_free
__fdtable_entry_nextavail=__fdtable_entry_nextavail
__fdtable_entry_add=__fdtable_entry_add
__fdtable_entry_remove=__fdtable_entry_remove
__fdtable_entry_get=__fdtable_entry_get
;safeobj
;misc/heap
GetProcessHeap=GetProcessHeap@0
;misc/init
__PdxInitializeData=__PdxInitializeData@8
;misc/path
__PdxPosixPathGetNextComponent_A=__PdxPosixPathGetNextComponent_A
__PdxPosixPathGetNextComponent_U=__PdxPosixPathGetNextComponent_U
__PdxPosixPathResolve_A=__PdxPosixPathResolve_A
__PdxPosixPathResolve_U=__PdxPosixPathResolve_U
__PdxPosixPathNameToNtPathName=__PdxPosixPathNameToNtPathName
;misc/safeobj
__safeobj_validate=__safeobj_validate
;misc/spawn
__PdxSpawnPosixProcess=__PdxSpawnPosixProcess@24
;pthread
pthread_create=pthread_create