⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uname.2

📁 操作系统设计与实现源码
💻 2
字号:


UNAME(2)                  Minix Programmer's Manual                   UNAME(2)


NAME
     uname - get system info

SYNOPSIS
     #include <sys/utsname.h>

     int uname(struct utsname *name)

DESCRIPTION
     Uname() fills a struct utsname with system information.   This  structure
     is described in <sys/utsname.h> as follows:

     struct utsname {
         char  sysname[15+1];           /* System name */
         char  nodename[255+1];         /* Node/Network name */
         char  release[11+1];           /* O.S. release */
         char  version[7+1];            /* O.S. version */
         char  machine[11+1];           /* Machine hardware */
         char  arch[11+1];              /* Architecture */
     };

     The strings are always null terminated, and may be of a different  length
     then shown here.  The first five are required by POSIX, the last is Minix
     specific.

SEE ALSO
     uname(1).

AUTHOR
     Kees J. Bot (kjb@cs.vu.nl)






















                                                                             1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -