Tagged Questions

18
votes
18answers
3k views

We have to use C “for performance reasons”

Hello StackOverflowers of the World, In this age of many languages there seems to be a great language for just about every task and I find myself professionally struggling against a mantra of ...
8
votes
2answers
2k views

struct sockaddr_un v/s sockaddr - C(Linux)

How is struct sockaddr different from struct sockaddr_un ? I know that we use these structures in client-server modules,for binding the socket to the socket address.And we use a cast operator for it ...
2
votes
2answers
679 views

Reading a child process's /proc/pid/mem file from the parent

In the program below, I am trying to cause the following to happen: Process A assigns a value to a stack variable a. Process A (parent) creates process B (child) with PID child_pid. Process B calls ...
1
vote
1answer
35 views

DBUS Server Crashing

I am implementing a DBUS object with Glib bindings and am having problems with returning GArrays: gboolean TestObject_get_data(TestObject* obj, GArray* buffer, GError** error) { int i; ...
1
vote
1answer
445 views

mmap on /proc/pid/mem

Has anybody succeeded in mmap'ing a /proc/pid/mem file with Linux kernel 2.6? I am getting an ENODEV (No such device) error. My call looks like this: char * map = mmap(NULL, PAGE_SIZE, PROT_READ, ...
1
vote
2answers
225 views

Sending structs through Unix domain sockets

I am using Unix domain sockets to do some interprocess communication in Linux. Upon connection, the client sends a struct using send to the server. This struct contains some information about the ...