forked from Imagelibrary/rtems
execv*() now comes from newlib.
This commit is contained in:
@@ -101,12 +101,14 @@ int fork() {
|
|||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
int execv(const char *_path, char * const _argv[] ) {
|
int execv(const char *_path, char * const _argv[] ) {
|
||||||
puts( "execv -- not supported!!!" );
|
puts( "execv -- not supported!!!" );
|
||||||
assert( 0 );
|
assert( 0 );
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
int wait() {
|
int wait() {
|
||||||
puts( "wait -- not supported!!!" );
|
puts( "wait -- not supported!!!" );
|
||||||
assert( 0 );
|
assert( 0 );
|
||||||
|
|||||||
Reference in New Issue
Block a user