1994-05-27 12:33:43 +00:00
|
|
|
.\" Copyright (c) 1983, 1990, 1992, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)gcore.1 8.2 (Berkeley) 4/18/94
|
1999-08-28 01:08:13 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
.\"
|
2016-07-14 00:32:27 +00:00
|
|
|
.Dd July 13, 2016
|
1994-05-27 12:33:43 +00:00
|
|
|
.Dt GCORE 1
|
2001-07-10 14:16:33 +00:00
|
|
|
.Os
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm gcore
|
|
|
|
.Nd get core images of running process
|
|
|
|
.Sh SYNOPSIS
|
2001-07-15 08:06:20 +00:00
|
|
|
.Nm
|
2010-07-14 17:16:25 +00:00
|
|
|
.Op Fl f
|
1994-05-27 12:33:43 +00:00
|
|
|
.Op Fl c Ar core
|
2002-04-19 23:44:58 +00:00
|
|
|
.Op Ar executable
|
1998-09-14 10:09:30 +00:00
|
|
|
.Ar pid
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh DESCRIPTION
|
2002-04-19 23:44:58 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility creates a core image of the specified process,
|
1994-05-27 12:33:43 +00:00
|
|
|
suitable for use with
|
2004-07-03 00:24:45 +00:00
|
|
|
.Xr gdb 1 .
|
1994-05-27 12:33:43 +00:00
|
|
|
By default, the core is written to the file
|
|
|
|
.Dq Pa core.<pid> .
|
1998-09-14 10:09:30 +00:00
|
|
|
The process identifier,
|
1994-05-27 12:33:43 +00:00
|
|
|
.Ar pid ,
|
2000-03-01 12:20:22 +00:00
|
|
|
must be given on the command line.
|
1994-05-27 12:33:43 +00:00
|
|
|
.Pp
|
2002-04-19 23:44:58 +00:00
|
|
|
The following options are available:
|
1994-05-27 12:33:43 +00:00
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl c
|
|
|
|
Write the core file to the specified file instead of
|
|
|
|
.Dq Pa core.<pid> .
|
2010-07-14 17:16:25 +00:00
|
|
|
.It Fl f
|
2010-12-28 18:58:15 +00:00
|
|
|
Dumps all available segments, excluding only malformed and undumpable segments.
|
|
|
|
Unlike the default invocation, this flag dumps mappings of devices which
|
|
|
|
may invalidate the state of device transactions or trigger other unexpected
|
|
|
|
behavior.
|
|
|
|
As a result, this flag should only be used when the behavior of the
|
|
|
|
application and any devices it has mapped is fully understood and any side
|
|
|
|
effects can be controlled or tolerated.
|
1994-05-27 12:33:43 +00:00
|
|
|
.El
|
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /var/log/messages -compact
|
|
|
|
.It Pa core.<pid>
|
2002-04-19 23:44:58 +00:00
|
|
|
the core image
|
2000-11-06 09:20:09 +00:00
|
|
|
.El
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh HISTORY
|
2002-04-19 23:44:58 +00:00
|
|
|
A
|
|
|
|
.Nm
|
|
|
|
utility appeared in
|
1996-08-23 20:36:11 +00:00
|
|
|
.Bx 4.2 .
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh BUGS
|
2009-11-25 15:23:14 +00:00
|
|
|
Because of the
|
|
|
|
.Xr ptrace 2
|
|
|
|
usage
|
1997-07-08 11:04:19 +00:00
|
|
|
.Nm
|
2010-12-28 18:58:15 +00:00
|
|
|
may not work with processes which are actively being investigated with
|
2009-11-25 15:23:14 +00:00
|
|
|
.Xr truss 1
|
|
|
|
or
|
|
|
|
.Xr gdb 1 .
|
|
|
|
Additionally, interruptable sleeps may exit with EINTR.
|
1994-05-27 12:33:43 +00:00
|
|
|
.Pp
|
2002-04-19 23:44:58 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility is not compatible with the original
|
2001-07-15 08:06:20 +00:00
|
|
|
.Bx 4.2
|
1996-08-23 20:36:11 +00:00
|
|
|
version.
|