forked from Imagelibrary/rtems
Now compiles.
This commit is contained in:
@@ -11,8 +11,12 @@ PROJECT_ROOT = @PROJECT_ROOT@
|
|||||||
# following are semi-implemented and untested
|
# following are semi-implemented and untested
|
||||||
# C_PIECES=aio cancel devctl intr mqueue ptimer semaphore time utsname
|
# C_PIECES=aio cancel devctl intr mqueue ptimer semaphore time utsname
|
||||||
|
|
||||||
|
ENOSYS_C_PIECES=\
|
||||||
|
execl execle execlp execv execve execvp fork \
|
||||||
|
pthreadatfork
|
||||||
|
|
||||||
C_PIECES= adasupp cond getpid key mutex pthread psignal sched time \
|
C_PIECES= adasupp cond getpid key mutex pthread psignal sched time \
|
||||||
types unistd
|
types unistd $(ENOSYS_C_PIECES)
|
||||||
C_FILES=$(C_PIECES:%=%.c)
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ int execlp(
|
|||||||
const char *file,
|
const char *file,
|
||||||
const char *arg,
|
const char *arg,
|
||||||
...
|
...
|
||||||
|
)
|
||||||
{
|
{
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ int execv(
|
|||||||
const char *file,
|
const char *file,
|
||||||
char *const argv[],
|
char *const argv[],
|
||||||
...
|
...
|
||||||
|
)
|
||||||
{
|
{
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ int execlp(
|
|||||||
const char *file,
|
const char *file,
|
||||||
const char *arg,
|
const char *arg,
|
||||||
...
|
...
|
||||||
|
)
|
||||||
{
|
{
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ int execv(
|
|||||||
const char *file,
|
const char *file,
|
||||||
char *const argv[],
|
char *const argv[],
|
||||||
...
|
...
|
||||||
|
)
|
||||||
{
|
{
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user