Projects
Browse Source     Search     Timeline     Wiki

Changeset 23384

Show
Ignore:
Timestamp:
09/13/07 17:33:43 (15 months ago)
Author:
zarzycki@…
Message:

More sanity checks.

Location:
trunk/launchd/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/launchd/src/launchd_core_logic.c

    r23383 r23384  
    23342334        } 
    23352335 
     2336        job_assumes(j, tnow > j->start_time); 
     2337 
    23362338        /* 
    23372339         * Some users adjust the wall-clock and then expect software to not notice. 
  • trunk/launchd/src/libvproc.c

    r23327 r23384  
    323323        case BOOTSTRAP_NO_MEMORY: 
    324324                errno = ENOMEM; break; 
     325        case BOOTSTRAP_NAME_IN_USE: 
     326                errno = EEXIST; break; 
     327        case 1: 
     328                errno = EIO; break; 
    325329        default: 
    326330                errno = EINVAL; break;