Re: Segmentation Fault(coredump) on solaris 10

Holger Weiß <[email protected]> Mon, 21 Sep 2015 09:50:25 +0200
Newsgroups gmane.network.nagios.plugins
Organization Freie Universität Berlin
Message-ID <20150921075025.GP13667__1532.65701742402$1442821853$gmane$org@zedat.fu-berlin.de>
* Samuel Mutel <[email protected]> [2015-09-18 14:11]:
> After compiling monitoring-plugins on solaris 10, i tried to use
> check_procs plugin.
> The result is Segmentation Fault(coredump).

Any chance you could get us a backtrace?  E.g., if you're using the GNU
build/development tools, you could call

	gdb -q /path/to/check_procs

and then (within gdb)

	run
	bt

With Sun's tools, you'd use "dbx" instead of "gdb" and "where" instead
of "bt".

Holger