Tagged Questions

0
votes
3answers
42 views

Kernel threads and POSIX library

How does one create a Kernel Thread using Posix library?
2
votes
5answers
119 views

Read a file into dynamic memory array using malloc and POSIX file operations [closed]

Possible Duplicate: reading a text file into an array in c Hi, I'm trying to read a file into a dynamic array. Firstly I open the file using open() so I get the file desc …
1
vote
5answers
54 views

passing a pointer to a structure as an argument to a thread cancellation cleanup handler

I'm having trouble passing a pointer to a structure as an argument to a thread cancellation cleanup handler. Here's some sample code that blows up when it hits the compiler. Any id …
1
vote
3answers
40 views

Shared POSIX objects cleanup on process end / death.

Hi, Is there any way to perform POSIX shared synchronization objects cleanup especially on process crash? Locked POSIX semaphores unblock is most desired thing but automatically ' …
0
votes
2answers
92 views

How to set the terminal’s size?

How do I get the terminal size in Go. In C it would look like this: struct ttysize ts; ioctl(0, TIOCGWINSZ, &ts); But how to i access TIOCGWINSZ in Go
5
votes
2answers
63 views

How can I get a human-readable description from a signal number?

Does the POSIX standard or another C standard provide a way to recover a meaningful message from a signal number, in the same way that strerror() makes it possible to recover a mes …
3
votes
3answers
100 views

c library function to get number of active threads

Hi everybody, I'm developing a multi threaded Unix application in C. Is there a simple way to get the count of the number of simultaneously active threads? I don't want to have to …
1
vote
2answers
42 views

PHP - Killing child process started by pcntl_fork

I am using pcntl_fork to start a child process to send an email via SMTP. The child process uses the PEAR Mail package to send the email, but the trouble is if the remote server d …
0
votes
4answers
77 views

thread termination issue (c programming)

I'm working on an application for Linux in C which uses multiple threads. The threads which are spawned by the main function do most of the work, and therefore usually finish last. …
0
votes
1answer
36 views

how to increase the priority of a child pthread relative to the parent thread

My application creates a helper pthread that I need to have run at a higher priority than the main thread. I tried to set the priority of the created thread like this: struct sch …
2
votes
2answers
70 views

malloc results in segmentation fault after mprotect

I'm getting a segmentation fault the first time I call malloc() after I protect a memory region with mprotect(). This is a code sniplet that does the memory allocation the the prot …
0
votes
5answers
76 views

Posix threads problem

Hello, I am trying to understand pthreads by example. I have made the following code that is giving different answers everytime I run! Could anyone explain the bug please? TIA, Svi …
1
vote
5answers
202 views

How can I catch a ctrl-c event? (C++)

How do I catch a ctrl-c event in C++?
2
votes
1answer
36 views

What non-Linux unixes support openat()?

openat() was added to POSIX in the POSIX.1-2008 revision, and has been supported by Linux since 2.6.16. How is support on non-Linux UNIXes? eg, Darwin, the *BSDs, and proprietary U …
11
votes
5answers
237 views

Good collection of libraries for C?

I'm looking for a good collection of libraries for ANSI-C, stuff for handling vectors, hash maps, binary tress, string processing, etc.

1 2 3 4 5 12 next
15 30 50 per page