search for: itimer_r

Displaying 5 results from an estimated 5 matches for "itimer_r".

Did you mean: ctime_r
2011 Aug 26
1
gem installation issues
...orted only once for each function it appears in system_timer_native.c:63:5: error: invalid use of undefined type ''struct sigaction'' system_timer_native.c:64:24: error: ''SIGALRM'' undeclared (first use in this function) system_timer_native.c:81:24: error: ''ITIMER_REAL'' undeclared (first use in this function) system_timer_native.c:95:26: error: ''SIG_UNBLOCK'' undeclared (first use in thisfunction) system_timer_native.c: In function ''install_next_timer'': system_timer_native.c:108:22: error: storage size of ''t...
2016 Aug 30
1
UPS shutdown
...4096) = 86 read(3, "", 4096) = 0 close(3) = 0 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x76f86068) = 2937 rt_sigaction(SIGALRM, {0x91b8, [], 0x4000000 /* SA_??? */}, NULL, 8) = 0 setitimer(ITIMER_REAL, {it_interval={0, 0}, it_value={45, 0}}, {it_interval={0, 0}, it_value={0, 0}}) = 0 wait4(2937, Network UPS Tools - Generic HID driver 0.37 (1.01-900) USB communication driver 0.32 Using subdriver: APC HID 0.95 Initiating UPS shutdown [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 2...
2000 Jul 18
5
scp not shutting down in 2.1.1p4
Hi! as I just noted, after scp the connection does not shut down properly. When I do a "scp file targethost:path", on targethost a "sshd" process is left running. I do use --with-default-path="/usr/local/openssh/bin:/usr/bin:/usr/local/bin" to assure, that the corrensponding openssh-scp is used. It also seems, that normal sessions are not always closed properly.
2011 Oct 08
13
[Bug 41585] New: X freeze and PGRAPH errors in dmesg
https://bugs.freedesktop.org/show_bug.cgi?id=41585 Summary: X freeze and PGRAPH errors in dmesg Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2023 Jan 14
1
[klibc:time64] time: Use 64-bit time types on all architectures
...t tv_sec; + __kernel_suseconds_t tv_usec; +}; + +struct itimerspec { + struct timespec it_interval; + struct timespec it_value; +}; + +struct itimerval { + struct timeval_old it_interval; + struct timeval_old it_value; +}; + +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; + +#define ITIMER_REAL 0 +#define ITIMER_VIRTUAL 1 +#define TIMER_PROF 2 + +#define CLOCK_REALTIME 0 +#define CLOCK_MONOTONIC 1 +#define CLOCK_PROCESS_CPUTIME_ID 2 +#define CLOCK_THREAD_CPUTIME_ID 3 +#define CLOCK_MONOTONIC_RAW 4 +#define CLOCK_REALTIME_COARSE 5 +#define CLOCK_MONOTONIC_COARSE 6 +#define CL...