Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ void *WaitForProfilerCompletion(void *thread_args /* struct ProcDumpConfiguratio
}
else if(status=='H')
{
Trace("WaitForProfilerCompletion: Recieved health check ping from profiler");
Trace("WaitForProfilerCompletion: Received health check ping from profiler");
}

free(dump);
Expand Down Expand Up @@ -1524,4 +1524,4 @@ void *ProcessMonitor(void *thread_args /* struct ProcDumpConfiguration* */)

Trace("ProcessMonitor: Exiting ProcessMonitor Thread");
pthread_exit(NULL);
}
}
2 changes: 1 addition & 1 deletion src/ProcDumpConfiguration.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ int PrintUsage()
printf(" -fc File descriptor count threshold above which to create a dump of the process.\n");
printf(" -sig Signal number to intercept to create a dump of the process.\n");
printf(" -e [.NET] Create dump when the process encounters an exception.\n");
printf(" -f [.NET] Filter (include) on the (comma seperated) exception name(s).\n");
printf(" -f [.NET] Filter (include) on the (comma separated) exception name(s).\n");
printf(" -pf Polling frequency.\n");
printf(" -o Overwrite existing dump file.\n");
printf(" -log Writes extended ProcDump tracing to syslog.\n");
Expand Down