aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/utsname.h
blob: 77e97a5755d9b3044bedfd3329aa64a8d173c509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _LINUX_UTSNAME_H
#define _LINUX_UTSNAME_H

#define __OLD_UTS_LEN 8

struct oldold_utsname {
	char sysname[9];
	char nodename[9];
	char release[9];
	char version[9];
	char machine[9];
};

#define __NEW_UTS_LEN 64

struct old_utsname {
	char sysname[65];
	char nodename[65];
	char release[65];
	char version[65];
	char machine[65];
};

struct new_utsname {
	char sysname[65];
	char nodename[65];
	char release[65];
	char version[65];
	char machine[65];
	char domainname[65];
};

extern struct new_utsname system_utsname;

static inline struct new_utsname *utsname(void)
{
	return &system_utsname;
}

static inline struct new_utsname *init_utsname(void)
{
	return &system_utsname;
}

extern struct rw_semaphore uts_sem;
#endif