Displaying 3 results from an estimated 3 matches for "thmo".
Did you mean:
theo
2005 Dec 02
2
cpu temp reading - got bus error from tar extract
Is there a way to read the cpu temp from centos?
I have odd things happening on my computer.
I have had a couple kernel crashes..
today I was trying to untar a file and got a "Bus error" printed on screen.
after a reboot the file untared just fine.
very odd behavior.
Without rebooting again I was wanting to check the health...
I have an Intel motherboard, 2.4 P4, 2 GIG, 2 brand new
2006 Oct 15
1
v4.4p1: compile fix
...t part --------------
--- openssh-4.4p1/monitor_fdpass.c.orig 2006-08-05 04:39:40.000000000 +0200
+++ openssh-4.4p1/monitor_fdpass.c 2006-10-15 13:10:51.000000000 +0200
@@ -29,7 +29,9 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
-
+#ifdef __linux__ /* (ThMO) */
+ #include <sys/un.h> /* for cmsg... -- linux 2.0.35 (ThMO) */
+#endif
#include <errno.h>
#include <string.h>
#include <stdarg.h>
2006 Nov 21
1
rsync v2.6.9: small patch fixing NORETURN failures
...orig 2006-10-24 05:31:30.000000000 +0200
+++ rsync-2.6.9/rsync.h 2006-11-21 21:32:09.000000000 +0100
@@ -667,7 +667,16 @@
#endif
#define UNUSED(x) x __attribute__((__unused__))
+#if __GNUC__ > 2
#define NORETURN __attribute__((__noreturn__))
+#define NORETURN2 /**/
+#elif __GNUC__ == 2 /* (ThMO) */
+#define NORETURN /**/
+#define NORETURN2 __attribute__((__noreturn__))
+#else
+#define NORETURN /**/
+#define NORETURN2 /**/
+#endif
#include "proto.h"