Since 4/16/2012 9:36:09 AM, nate14 has written 1 articles and participated in 513 conversations. nate14 signature: nate14
nate14's articles:
Items(1) /1
Initializing compound type containing opaque type2834 (10/1/2008 9:05:53 PM) comp.lang.c Consider the following pseudo-code: #include struct foo { int a; opaque_t op; int b; }; struct foo blah = { 17, /* ??? */ , 23 }; Here we suppose that `opaque_t' is defined in as some... Nate
Profiler for g++ programs1454 (6/12/2009 1:11:38 PM) comp.unix.programmer I am new to application programming for Linux. Is there any good (GUI is better) profiler for Linux, except gprof? Thanks. -- Ioannis A. Vranos C95 / C++03 Developer http://www.cpp-software.net ... ivranos2(182)
ISO recommendations for hash table lib3348 (6/12/2009 4:23:30 PM) comp.lang.c Can someone recommend a decent hash table library? I know about the functions in search.h (hsearch, etc.), but I need to be able to have multiple hash tables simultaneously, so this is out. TIA! kynn P.S... no.email5(313)
how to get milliseconds under uninx1573 (6/13/2009 5:30:11 AM) comp.unix.programmer Dear all: I want to measure how long a instruction executed by HW in the unit of milliseconds. But the c lib seems only support the minimum unit as seconds, time(). Is there any system calls or some other lib c... miloody(44)
segmentation fault in strcmp()2549 (6/16/2009 4:30:46 AM) comp.lang.c hello all, I am writing a program to parse HTML code, it reads words (separated by white spaces) one at a time and implements a state machine depending upon the occurrence of various tags. Now after reading a... mohangupta13(109)
Global restricted function pointer2226 (6/16/2009 8:07:29 AM) comp.lang.c How do I declare a global restricted pointer to a function? I have a vanilla global void (*fp)(); But if I try void (*restrict fp)(); it's an "invalid use of restrict" (GCC with -std=c99 -pedantic). What's... jshamalini(7)
Program to reboot computer if no network connection?2642 (6/19/2009 3:42:50 AM) comp.os.linux.misc Hi folks, Have a cronjob to reboot a Linux box in the wee hours of the morning. Strange as it may seem, sometimes the network card is blocked. Looking for a program that will ping a collection of IPs for 5-10... xyz2041(3)
preprocessor stringify and #include1228 (6/19/2009 7:51:58 PM) comp.lang.c I've read the FAQ (although if this /is/ a FAQ, please point me at it) and I've read quite a few promising posts in this group. But I am not able to do what I want. Which is: I have some very long pathnames t... pete1421(5)