Displaying 9 results from an estimated 9 matches for "ru_utim".
Did you mean:
ru_utime
2009 Aug 12
0
Problem with Linux x86_64 RODBC and Netezza (PR#13889)
...elect identifier_case, cur"..., 59, 0, NULL, 0) = 59
recvfrom(3, "P\0\0\0\5\0\0\0\6blank\0T\0\0\0\5\0\0\0P\0\3IDENTI"..., 16384, 0,
NULL, NULL) = 174
write(1, "> ", 2) = 2
write(1, "conn\n", 5) = 5
getrusage(RUSAGE_SELF, {ru_utime={0, 357945}, ru_stime={0, 82987}, ...}) = 0
getrusage(RUSAGE_CHILDREN, {ru_utime={0, 0}, ru_stime={0, 999}, ...}) = 0
write(1, "RODBC Connection ", 17) = 17
write(1, "1", 1) = 1
write(1, "\nDetails:\n ", 12) = 12
write(1, "c...
2007 Oct 23
2
beta 1.1-3 compile fails on solaris 9 sparc, cc.
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/SUNWconn/crypto/include
-xjobs=4 -c file-set-size.c
"/usr/include/sys/resource.h", line 126: incomplete struct/union/enum
timeval: ru_utime
"file-set-size.c", line 26: warning: implicit function declaration: ftruncate
"file-set-size.c", line 38: warning: implicit function declaration: pwrite
cc: acomp failed for file-set-size.c
*** Error code 2
make: Fatal error: Command failed for target `file-set-size.o'
Curr...
2023 Jan 14
1
[klibc:time64] time: Use 64-bit time types on all architectures
...4 files changed, 70 insertions(+), 10 deletions(-)
diff --git a/usr/include/sys/resource.h b/usr/include/sys/resource.h
index 94ed28a5..e43a69dd 100644
--- a/usr/include/sys/resource.h
+++ b/usr/include/sys/resource.h
@@ -15,8 +15,8 @@
#define RUSAGE_THREAD 1
struct rusage {
- struct timeval ru_utime; /* user time used */
- struct timeval ru_stime; /* system time used */
+ struct timeval_old ru_utime; /* user time used */
+ struct timeval_old ru_stime; /* system time used */
__kernel_long_t ru_maxrss; /* maximum resident set size */
__kernel_long_t ru_ixrss; /* integral shared memory size...
2008 Jan 11
0
Deadlock of asterisk on app_system
...b2955d3 in fork () from /lib64/libc.so.6^
No symbol table info available.^
#4 0x000000000042727b in ast_safe_system (s=0x41a3c9f0 "sudo -u
apache echo `date` 1200071726.3163 SIP/204.11.200.152-c0070ed0
8505755211 28901 0 >> /var/l
pid = 0^
x = -1073476672^
res = 10922^
rusage = {ru_utime = {tv_sec = 1101244208, tv_usec = 1101244640},
ru_stime = {tv_sec = 1101244224, tv_usec = 5241072}, ru_maxrss =
469252700480, ru_ixrss
status = 0^
__PRETTY_FUNCTION__ = "ast_safe_system"^
...
Seems that asterisk got locked on fork() and that's quite strange.
Other threads should...
2004 May 03
3
R 1.9.0 on AIX, 64-bit
I'm trying to get R 1.9.0 running on AIX 5.1 with the standard AIX
compilers (xlc, xlf) and it is failing 2 of the tests,
test-Reg in reg-tests-1.R like this:
bash-2.05b$ tail -30 reg-tests-1.Rout.fail
[,1] [,2]
[1,] 1 3
[2,] 2 4
[3,] 1 3
[4,] 2 4
> stopifnot(typeof(res) == "list")
> ## were not implemented in 1.8.1
>
>
> ## Date objects with
2023 Jan 14
1
[klibc:time64] resource: Avoid using <linux/resource.h>
...sys/types.h> /* MUST be included before linux/resource.h */
-#include <linux/resource.h>
+#include <sys/types.h>
+#include <sys/time.h>
+
+#define RUSAGE_SELF 0
+#define RUSAGE_CHILDREN (-1)
+#define RUSAGE_BOTH (-2)
+#define RUSAGE_THREAD 1
+
+struct rusage {
+ struct timeval ru_utime; /* user time used */
+ struct timeval ru_stime; /* system time used */
+ __kernel_long_t ru_maxrss; /* maximum resident set size */
+ __kernel_long_t ru_ixrss; /* integral shared memory size */
+ __kernel_long_t ru_idrss; /* integral unshared data size */
+ __kernel_long_t ru_isrss; /* integral u...
2002 Aug 10
3
ext3_readdir error
...GUSR1, {0x8048e40, [], SA_RESTART|0x4000000}, NULL, 8) = 0
rt_sigaction(SIGUSR2, {0x8048e74, [], SA_RESTART|0x4000000}, NULL, 8) = 0
open("/dev/null", O_RDWR) = 3
close(3) = 0
gettimeofday({1028968512, 177653}, NULL) = 0
getrusage(RUSAGE_SELF, {ru_utime={0, 0}, ru_stime={0, 0}, ...}) = 0
write(2, "e2fsck 1.26 (3-Feb-2002)\n", 25e2fsck 1.26 (3-Feb-2002)
) = 25
stat64("/dev/sda1", {st_mode=S_IFBLK|0660, st_rdev=makedev(8, 1), ...}) =
0
open("/proc/swaps", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_si...
2015 May 18
5
kernel/libc uapi changes for y2038
...se
+#define __kernel_rusage rusage
+#endif
/*
* Definition of struct rusage taken from BSD 4.3 Reno
@@ -20,7 +26,7 @@
#define RUSAGE_BOTH (-2) /* sys_wait4() uses this */
#define RUSAGE_THREAD 1 /* only the calling thread */
-struct rusage {
+struct __old_kernel_rusage {
struct timeval ru_utime; /* user time used */
struct timeval ru_stime; /* system time used */
__kernel_long_t ru_maxrss; /* maximum resident set size */
diff --git a/include/uapi/linux/time.h b/include/uapi/linux/time.h
index 72d894df3013..b3988606128f 100644
--- a/include/uapi/linux/time.h
+++ b/include/uapi/linux/t...
2018 Jun 27
0
dovecot-2.3.36 and flush
...47) = 0
brk(0x25d9000)????????????????????????? = 0x25d9000
open("/dev/urandom", O_RDONLY)????????? = 4
fcntl(4, F_GETFD)?????????????????????? = 0
fcntl(4, F_SETFD, FD_CLOEXEC)?????????? = 0
fstat(4, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0
getrusage(0x1 /* RUSAGE_??? */, {ru_utime={0, 8000}, ru_stime={0,
12000}, ...}) = 0
read(4,
"\241\t\357\300\253\223=\34\226h\244\1\260\334e\217\36\37\205n\244\347\325o\3313;\0\254\370}#",
32) = 32
read(4,
"\317\265\275\216dP\0O\"u\277\340\266\207\273\2134\241L\277H?Z{B\374\300G\22?\365\207",
32) = 32
read(4, "...