Changeset 23020
- Timestamp:
- 01/23/07 10:56:20 (23 months ago)
- Files:
-
- 1 modified
-
trunk/launchd/src/launchd.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/launchd/src/launchd.c
r23009 r23020 291 291 } 292 292 293 if (stat(ldconf, &sb) == 0) { 293 /* 294 * We cannot stat() anything in the home directory right now. 295 * 296 * The per-user launchd can easily be demand launched by the tool doing 297 * the mount of the home directory. The result is an ugly deadlock. 298 * 299 * We hope to someday have a non-blocking stat(), but for now, we have 300 * to skip it. 301 */ 302 if (!h && stat(ldconf, &sb) == 0) { 294 303 job_dispatch(rlcj, true); 295 304 }

