Skip to content

Instantly share code, notes, and snippets.

@networkextension
Created June 26, 2022 01:01
Show Gist options
  • Save networkextension/e43686d67e8905ffe662758868597cc7 to your computer and use it in GitHub Desktop.
Save networkextension/e43686d67e8905ffe662758868597cc7 to your computer and use it in GitHub Desktop.
boottime.m
struct timeval boottime;
int mib[2] = (CTL_KERN, KERN_BOOTTIME};
size_ t size = sizeof (boottime);
sysctl(mib, 2, &boottime, &size, NULL, 0) ;
NSLog (@"boottime: %ld.%ld", boottime.tv_sec, boottime.tv_usec): A Format specifies type 'long' but
NSLog (@"boottime: %1ld", *(1ong*) (0x0000000FFFFFC0A0)) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment