Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

kvm_getu(3K)

kvm_open(3K)

kvm_read(3K)

KVM_NEXTPROC(3K)  —  KERNEL VM LIBRARY FUNCTIONS

NAME

kvm_getproc, kvm_nextproc, kvm_setproc − read system process structures

SYNOPSIS

#include <kvm.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/proc.h>

struct proc ∗kvm_getproc(kd, pid)
kvm_t ∗kd;
int pid;

struct proc ∗kvm_nextproc(kd)
kvm_t ∗kd;

int kvm_setproc(kd)
kvm_t ∗kd;

DESCRIPTION

kvm_nextproc() may be used to sequentially read all of the system process structures from the kernel identified by kd (see kvm_open(3K)).  Each call to kvm_nextproc() returns a pointer to the static memory area that contains a copy of the next valid process table entry.  There is no guarantee that the data will remain valid across calls to kvm_nextproc, kvm_setproc, or kvm_getproc.  Therefore, if the process structure must be saved, it should be copied to non-volatile storage. 

For performance reasons, many implementations will cache a set of system process structures.  Since the system state is liable to change between calls to kvm_nextproc, and since the cache may contain obsolete information, there is no guarantee that every process structure returned refers to an active process, nor is it certain that all processes will be reported. 

kvm_setproc() rewinds the process list, enabling kvm_nextproc() to rescan from the beginning of the system process table.  kvm_setproc() will always flush the process structure cache, allowing an application to re-scan the process table of a running system. 

kvm_getproc() locates the proc structure of the process specified by pid and returns a pointer to it.  kvm_getproc() does not interact with the process table pointer manipulated by kvm_nextproc, however, the restrictions regarding the validity of the data still apply. 

RETURN VALUE

kvm_getproc() and kvm_nextproc() return a NULL pointer if an error has occurred. 

kvm_setproc() returns a value of 0 on successful completion.  Otherwise −1 is returned. 

SEE ALSO

kvm_getu(3K), kvm_open(3K), kvm_read(3K)

Sun Release 4.0  —  Last change: 6 October 1987

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026