add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy

This commit is contained in:
Denis Vlasenko
2007-03-25 23:21:05 +00:00
parent 10f8f5f443
commit cad04ef4f3
11 changed files with 31 additions and 52 deletions

View File

@ -667,7 +667,8 @@ static void execute(const char *type, const char *device, const char *mntpt,
/* Fork and execute the correct program. */
pid = -1;
if (!noexecute) {
pid = fork(); /* TODO: NOMMU friendly way (vfork)? */
/* TODO: NOMMU friendly way (vfork)? */
pid = fork();
if (pid < 0)
bb_perror_msg_and_die("fork");
if (pid == 0) {