Renamed findproc() to _pm_findproc() to reduce polluting of application
namespace.
This commit is contained in:
@@ -4,6 +4,7 @@ LIBRARIES=libc
|
||||
|
||||
libc_FILES=" \
|
||||
_exit.s \
|
||||
_pm_findproc.s \
|
||||
access.s \
|
||||
alarm.s \
|
||||
allocmem.s \
|
||||
@@ -29,7 +30,6 @@ libc_FILES=" \
|
||||
execve.s \
|
||||
execvp.s \
|
||||
fcntl.s \
|
||||
findproc.s \
|
||||
fork.s \
|
||||
fpathconf.s \
|
||||
freemem.s \
|
||||
|
||||
7
lib/syscall/_pm_findproc.s
Normal file
7
lib/syscall/_pm_findproc.s
Normal file
@@ -0,0 +1,7 @@
|
||||
.sect .text
|
||||
.extern ___pm_findproc
|
||||
.define __pm_findproc
|
||||
.align 2
|
||||
|
||||
__pm_findproc:
|
||||
jmp ___pm_findproc
|
||||
@@ -1,7 +0,0 @@
|
||||
.sect .text
|
||||
.extern __findproc
|
||||
.define _findproc
|
||||
.align 2
|
||||
|
||||
_findproc:
|
||||
jmp __findproc
|
||||
Reference in New Issue
Block a user