Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ uname(2) — AUX SR8.0

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

uname(1)

UNAME(2)

NAME

uname − get name of current UNIX system

SYNOPSIS

#include <sys/utsname.h>

int uname (name)
struct utsname ∗name;

DESCRIPTION

Uname stores information identifying the current UNIX system in the structure pointed to by name.

Uname uses the structure defined in <sys/utsname.h>:

struct utsname {
        char    sysname[9];
        char    nodename[9];
        char    release[9];
        char    version[9];
};
extern struct utsname utsname;

Uname returns a null-terminated character string naming the current UNIX system in the character array sysname. Similarly, nodename contains the name that the system is known by on a communications network.  Release and version further identify the operating system. 

Uname will fail if name points to an invalid address.  ­[EFAULT]

RETURN VALUE

Upon successful completion, a non-negative value is returned.  Otherwise, −1 is returned and errno is set to indicate the error. 

SEE ALSO

uname(1). 

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