Explore >> Select a destination


You are here

ariadne.space
| | www.lieberbiber.de
10.7 parsecs away

Travel
| | On January 19, 2038 all signed 32-bit timestamps representing time and date relative to the "UNIX epoch" will roll over. Just 68 years later, in 2106, all unsigned 32-bit values will do so. But even before that, timestamps used by the Network Time Protocol will roll over in 2036. Since it's only 19 years to Armageddon, I'll lok at what this means for Linux, Windows and other systems and how problems are being solved.
| | kroah.com
7.8 parsecs away

Travel
| | One common Linux kernel driver issue that I see all the time is a driver author attempting to create a sysfs file in their code by doing something like: int my_driver_probe(...) { ... retval = device_create_file(my_device, &my_first_attribute); if (retval) goto error1; retval = device_create_file(my_device, &my_second_attribute); if (retval) goto error2; ... return 0; error2: device_remove_file(my_device, &my_first_attribute); error1: /* Clean up other things and return an error */ ... return -ENODEV; } ...
| | www.systutorials.com
7.2 parsecs away

Travel
| | Statically Linking C and C++ Programs on Linux with gcc tagged C, C++, CentOS, cmake, Command, Command line, compatibility, compiler, DNS, Fedora, g++, gcc, glibc, GNU, How to, kernel, Library, linking, Linux, Linux Kernel, memory, mmap, musl-libc, POSIX, R, RHEL, systems, Tutorial, www, yum.
| | blog.selfshadow.com
152.9 parsecs away

Travel
|