mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
introducing __PdxSpawnPosixProcess(). Still some linker warnings, will solve tomorrow
svn path=/trunk/; revision=2681
This commit is contained in:
parent
a681b85839
commit
d57ab3df35
3 changed files with 32 additions and 30 deletions
|
@ -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 = ../../../..
|
PATH_TO_TOP = ../../../..
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ OBJECTS_MISC = \
|
||||||
misc/heap.o \
|
misc/heap.o \
|
||||||
misc/interlock.o \
|
misc/interlock.o \
|
||||||
misc/safeobj.o \
|
misc/safeobj.o \
|
||||||
|
misc/spawn.o \
|
||||||
misc/path.o \
|
misc/path.o \
|
||||||
misc/fdtable.o
|
misc/fdtable.o
|
||||||
|
|
||||||
|
|
|
@ -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
|
; ReactOS POSIX+ Client Library
|
||||||
;
|
;
|
||||||
|
@ -6,12 +6,6 @@
|
||||||
LIBRARY PSXDLL.DLL
|
LIBRARY PSXDLL.DLL
|
||||||
EXPORTS
|
EXPORTS
|
||||||
|
|
||||||
;misc/init
|
|
||||||
__PdxInitializeData@8
|
|
||||||
;misc/heap
|
|
||||||
GetProcessHeap@0
|
|
||||||
|
|
||||||
|
|
||||||
;dirent
|
;dirent
|
||||||
opendir
|
opendir
|
||||||
readdir
|
readdir
|
||||||
|
@ -35,21 +29,27 @@ fcntl
|
||||||
basename
|
basename
|
||||||
|
|
||||||
;misc
|
;misc
|
||||||
;path
|
;misc/fdtable
|
||||||
__PdxPosixPathGetNextComponent_A
|
|
||||||
__PdxPosixPathGetNextComponent_U
|
|
||||||
__PdxPosixPathResolve_A
|
|
||||||
__PdxPosixPathResolve_U
|
|
||||||
__PdxPosixPathNameToNtPathName
|
|
||||||
;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
|
||||||
|
;misc/init
|
||||||
|
__PdxInitializeData
|
||||||
|
;misc/path
|
||||||
|
__PdxPosixPathGetNextComponent_A
|
||||||
|
__PdxPosixPathGetNextComponent_U
|
||||||
|
__PdxPosixPathResolve_A
|
||||||
|
__PdxPosixPathResolve_U
|
||||||
|
__PdxPosixPathNameToNtPathName
|
||||||
|
;misc/safeobj
|
||||||
__safeobj_validate
|
__safeobj_validate
|
||||||
|
;misc/spawn
|
||||||
|
__PdxSpawnPosixProcess
|
||||||
|
|
||||||
;pthread
|
;pthread
|
||||||
pthread_create
|
pthread_create
|
||||||
|
|
|
@ -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
|
; ReactOS POSIX+ Client Library
|
||||||
;
|
;
|
||||||
|
@ -6,11 +6,6 @@
|
||||||
LIBRARY PSXDLL.DLL
|
LIBRARY PSXDLL.DLL
|
||||||
EXPORTS
|
EXPORTS
|
||||||
|
|
||||||
;misc/init
|
|
||||||
__PdxInitializeData=__PdxInitializeData@8
|
|
||||||
;misc/heap
|
|
||||||
GetProcessHeap=GetProcessHeap@0
|
|
||||||
|
|
||||||
;dirent
|
;dirent
|
||||||
opendir=opendir
|
opendir=opendir
|
||||||
readdir=readdir
|
readdir=readdir
|
||||||
|
@ -34,21 +29,27 @@ fcntl=fcntl
|
||||||
basename=basename
|
basename=basename
|
||||||
|
|
||||||
;misc
|
;misc
|
||||||
;path
|
;misc/fdtable
|
||||||
__PdxPosixPathGetNextComponent_A=__PdxPosixPathGetNextComponent_A
|
|
||||||
__PdxPosixPathGetNextComponent_U=__PdxPosixPathGetNextComponent_U
|
|
||||||
__PdxPosixPathResolve_A=__PdxPosixPathResolve_A
|
|
||||||
__PdxPosixPathResolve_U=__PdxPosixPathResolve_U
|
|
||||||
__PdxPosixPathNameToNtPathName=__PdxPosixPathNameToNtPathName
|
|
||||||
;fdtable
|
|
||||||
__fdtable_init=__fdtable_init
|
__fdtable_init=__fdtable_init
|
||||||
__fdtable_free=__fdtable_free
|
__fdtable_free=__fdtable_free
|
||||||
__fdtable_entry_nextavail=__fdtable_entry_nextavail
|
__fdtable_entry_nextavail=__fdtable_entry_nextavail
|
||||||
__fdtable_entry_add=__fdtable_entry_add
|
__fdtable_entry_add=__fdtable_entry_add
|
||||||
__fdtable_entry_remove=__fdtable_entry_remove
|
__fdtable_entry_remove=__fdtable_entry_remove
|
||||||
__fdtable_entry_get=__fdtable_entry_get
|
__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
|
__safeobj_validate=__safeobj_validate
|
||||||
|
;misc/spawn
|
||||||
|
__PdxSpawnPosixProcess=__PdxSpawnPosixProcess@24
|
||||||
|
|
||||||
;pthread
|
;pthread
|
||||||
pthread_create=pthread_create
|
pthread_create=pthread_create
|
||||||
|
|
Loading…
Reference in a new issue