diff options
author | Aaron Brashears <aaronb@lindenlab.com> | 2007-01-03 21:05:41 +0000 |
---|---|---|
committer | Aaron Brashears <aaronb@lindenlab.com> | 2007-01-03 21:05:41 +0000 |
commit | 4617a37edfc291a0942027231691bdbf6109b9cb (patch) | |
tree | 5745c5e3dee0568be67d48242814d2654d80c9de /indra/llcommon/llapp.cpp | |
parent | 2b291c2732b583911c0d98c30dbfedfd4022babb (diff) |
corrected, removed, and updated comments throughout the code to be more useful. no code changes. SL-13762
Diffstat (limited to 'indra/llcommon/llapp.cpp')
-rw-r--r-- | indra/llcommon/llapp.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp index 50648a2d30..fda6d89a72 100644 --- a/indra/llcommon/llapp.cpp +++ b/indra/llcommon/llapp.cpp @@ -364,7 +364,8 @@ LONG WINAPI default_windows_exception_handler(struct _EXCEPTION_POINTERS *except // // Generate a minidump if we can. // - // FIXME: This needs to be ported over form the viewer-specific LLWinDebug class + // TODO: This needs to be ported over form the viewer-specific + // LLWinDebug class // // At this point, we always want to exit the app. There's no graceful @@ -510,10 +511,13 @@ void default_unix_signal_handler(int signum, siginfo_t *info, void *) { llinfos << "Signal handler - Got SIGCHLD from " << info->si_pid << llendl; } - // Check result code for all child procs for which we've registered callbacks - // THIS WILL NOT WORK IF SIGCHLD IS SENT w/o killing the child (Go, launcher!) - // FIXME: Now that we're using SIGACTION, we can actually implement the launcher behavior to determine - // who sent the SIGCHLD even if it doesn't result in child termination + + // Check result code for all child procs for which we've + // registered callbacks THIS WILL NOT WORK IF SIGCHLD IS SENT + // w/o killing the child (Go, launcher!) + // TODO: Now that we're using SIGACTION, we can actually + // implement the launcher behavior to determine who sent the + // SIGCHLD even if it doesn't result in child termination if (LLApp::sChildMap.count(info->si_pid)) { LLApp::sChildMap[info->si_pid].mGotSigChild = TRUE; |