ACCT(5) - File Formats Manual # ACCT(5) - File Formats Manual
NAME # acct - execution accounting file
SYNOPSIS # #include <sys/acct.h>
DESCRIPTION # The kernel maintains the following acct information structure for all processes. If a process terminates or misbehaves in specific ways, and accounting is enabled, the kernel calls the acct(2) function call to prepare and append the record to the accounting file.
/* * Accounting structures; these use a comp_t type which is a 3 bits base 8 * exponent, 13 bit fraction floating point number.
...
CORE(3p) Perl Programmers Reference Guide CORE(3p) # CORE(3p) Perl Programmers Reference Guide CORE(3p)
NNAAMMEE # CORE - Namespace for Perl's core routines SSYYNNOOPPSSIISS # BEGIN { # *CORE::GLOBAL::hex = sub { 1; }; } print hex("0x50"),"\n"; # prints 1 print CORE::hex("0x50"),"\n"; # prints 80 CORE::say "yes"; # prints yes BEGIN { *shove = \&CORE::push; } shove @array, 1,2,3; # pushes on to @array DDEESSCCRRIIPPTTIIOONN # The "CORE" namespace gives access to the original built-in functions of Perl.
...
CORE(4) - Device Drivers Manual (sparc64) # CORE(4) - Device Drivers Manual (sparc64)
NAME # core - processor core
SYNOPSIS # core* at cmp?
DESCRIPTION # The core driver provides support for the chip multi-threading processors that have multiple threads such as the Fujitsu SPARC64-VI processors. It is not a physical device as such, but an abstraction to attach individual CPU threads.
SEE ALSO # cmp(4), intro(4)
HISTORY # The core driver first appeared in OpenBSD 4.
...
CORE(5) - File Formats Manual # CORE(5) - File Formats Manual
NAME # core - memory image file format
SYNOPSIS # #include <sys/types.h>
#include <sys/exec_elf.h>
DESCRIPTION # A small number of signals which cause abnormal termination of a process also cause a record of the process’s in-core state to be written to disk for later examination by one of the available debuggers (see sigaction(2)).
By default, this memory image is written to a file named programname.
...
ELF(5) - File Formats Manual # ELF(5) - File Formats Manual
NAME # elf - format of ELF executable binary files
SYNOPSIS # #include <elf.h>
DESCRIPTION # The header file <elf.h> defines the format of ELF executable binary files. Amongst these files are normal executable files, relocatable object files, core files and shared libraries.
An executable file using the ELF file format consists of an ELF header, followed by a program header table or a section header table, or both.
...
LASTCOMM(1) - General Commands Manual # LASTCOMM(1) - General Commands Manual
NAME # lastcomm - show last commands executed in reverse order
SYNOPSIS # lastcomm [-f file] [command …] [user …] [terminal …]
DESCRIPTION # lastcomm gives information on previously executed commands. With no arguments, lastcomm prints information about all the commands recorded during the current accounting file’s lifetime.
The options are as follows:
-f file
Read from file rather than the default accounting file.
...