Skip to content

Commit

Permalink
Releaseprep (#162)
Browse files Browse the repository at this point in the history
* 1.4.1 Release prep

* Add wildcard support to man page
  • Loading branch information
MarioHewardt authored Mar 3, 2023
1 parent 85e46f9 commit 0cb7d54
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions dist/procdump.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ make CFLAGS="%{optflags}"


%changelog
* Fri Mar 3 2023 Mario Hewardt <marioh@microsoft.com> - 1.4.1
- added the capability to dump on .NET 1st chance exception messages
- added wildcard support for .NET exception filters

* Mon Dec 12 2022 Mario Hewardt <marioh@microsoft.com> - 1.4
- added the capability to dump on .NET 1st chance exceptions (-e and -f)

Expand Down
4 changes: 2 additions & 2 deletions procdump.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" Manpage for procdump.
.TH man 8 "12/12/2022" "1.4" "procdump manpage"
.TH man 8 "3/3/2023" "1.4.1" "procdump manpage"
.SH NAME
procdump \- generate coredumps based off performance triggers.
.SH SYNOPSIS
Expand Down Expand Up @@ -30,7 +30,7 @@ Options:
-fc File descriptor count threshold above which to create a dump of the process.
-sig Signal number to intercept to create a dump of the process.
-e [.NET] Create dump when the process encounters an exception.
-f [.NET] Filter (include) on the (comma seperated) exception name(s) and exception message(s).
-f [.NET] Filter (include) on the (comma seperated) exception name(s) and exception message(s). Supports wildcards.
-pf Polling frequency.
-o Overwrite existing dump file.
-log Writes extended ProcDump tracing to syslog.
Expand Down
6 changes: 3 additions & 3 deletions src/ProcDumpConfiguration.c
Original file line number Diff line number Diff line change
Expand Up @@ -707,8 +707,8 @@ bool PrintConfiguration(struct ProcDumpConfiguration *self)
//--------------------------------------------------------------------
void PrintBanner()
{
printf("\nProcDump v1.4 - Sysinternals process dump utility\n");
printf("Copyright (C) 2022 Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n");
printf("\nProcDump v1.4.1 - Sysinternals process dump utility\n");
printf("Copyright (C) 2023 Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n");
printf("Mark Russinovich, Mario Hewardt, John Salem, Javid Habibi\n");
printf("Sysinternals - www.sysinternals.com\n\n");

Expand Down 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) and exception messages(s).\n");
printf(" -f [.NET] Filter (include) on the (comma seperated) exception name(s) and exception messages(s). Supports wildcards.\n");
printf(" -pf Polling frequency.\n");
printf(" -o Overwrite existing dump file.\n");
printf(" -log Writes extended ProcDump tracing to syslog.\n");
Expand Down

0 comments on commit 0cb7d54

Please sign in to comment.