9
votes
6answers
4k views
C++: what regex library should I use?
I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.)
QUESTION: Wha …
3
votes
1answer
947 views
how to use libxml2 to modify an existing xml file?
I need to take an existing xml file, and modify just a few attributes and write the file back out.
I was thinking of using libxml2 to get this done. Application is C/C++ running on Linux. …
2
votes
9answers
489 views
how do I get a process to reload itself in linux?
I have a service, say foo, written in C++, that runs as root. There is the usual scrip, /etc/init.d/foo start|stop|restart.
At certain times, foo needs to reload itself. Normally after an …
2
votes
7answers
308 views
What API do I call to set a user’s password on linux?
I know about passwd(1) and crypt(3). What I'm looking for is a C API to call which will set the user's password in the passwd/shadow files, without having to programatica …
0
votes
1answer
31 views
should I be calling lckpwdf() prior to getspent()?
Is lckpwdf() and ulckpwdf() intended to be used only for apps directly accessing the shadow password file?
More precisely, my question is: If I call the usual API …
0
votes
0answers
62 views
How do I prevent the “Disabling display # to avoid infinite recursion” error message in ddd?
I use ddd (v3.3.1.1 x86_64-pc-linux-gnu, Ubuntu 9.04) to debug my single-threaded C++ app. The first time through, everything works fine, and I can inspect variables without problems.
Once …
2
votes
1answer
134 views
How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?
(My environment is 64-bit Ubuntu, my application is C++ compiled and linked with g++.)
When an application does something like divide by zero or run a asm("int $3") left in the …
1
vote
2answers
189 views
What API do I call to get the system uptime?
I would like to get the system uptime from within a C application running on a linux-based system. I don't want to call uptime(1) and parse the output, I'd like to call the underlying C API I susp …
2
votes
C++: what regex library should I use?
Thanks for all the suggestions.
I tried out a few things today, and with the stuff we're trying to do, I opted for the simplest solution where I don't have to download any other 3rd-party l …
0
votes
What API do I call to set a user’s password on linux?
As 8jean commented above, looks like /usr/sbin/chpasswd might be the easiest way. Otherwise I'd have gone with noha's comment of using functions like fgetpwent() -- or fgetspent() for dealing with …
