1 11 package org.eclipse.swt.internal.photon; 12 13 public class utsname { 14 public byte[] sysname = new byte[_SYSNAME_SIZE]; 15 public byte[] nodename = new byte[_SYSNAME_SIZE]; 16 public byte[] release = new byte[_SYSNAME_SIZE]; 17 public byte[] version = new byte[_SYSNAME_SIZE]; 18 public byte[] machine = new byte[_SYSNAME_SIZE]; 19 public static final int _SYSNAME_SIZE = 256 + 1; 20 public static final int sizeof = _SYSNAME_SIZE * 5; 21 } 22 | Popular Tags |