cregit-Linux how code gets into the kernel

Release 4.14 include/linux/uts.h

Directory: include/linux
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_UTS_H

#define _LINUX_UTS_H

/*
 * Defines for what uname() should return 
 */
#ifndef UTS_SYSNAME

#define UTS_SYSNAME "Linux"
#endif

#ifndef UTS_NODENAME

#define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME 
/* set by sethostname() */
#endif

#ifndef UTS_DOMAINNAME

#define UTS_DOMAINNAME "(none)"	
/* set by setdomainname() */
#endif

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3794.87%133.33%
Josh Triplett12.56%133.33%
Greg Kroah-Hartman12.56%133.33%
Total39100.00%3100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.