Tagged Questions

33
votes
6answers
9k views

Programmatically get the cache line size?

Just want to document the answer to this specific question... a similar question (with potential answers was asked here) All platforms welcome, please specify the platform for your answer.
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 ...
9
votes
3answers
240 views

Is it possible to implement a small Disk OS in C or C++?

I am not trying to do any such thing, but I was wondering out of curiosity whether one could implement an "entire OS" (not necessarily something big like Linux or Microsoft Windows, but more like a ...
5
votes
2answers
467 views

libeio on windows

What would it take to port libeio to windows?
5
votes
2answers
1k views

*nix select and exceptfds/errorfds semantics

The select() syscall takes 3 filedescriptor sets for watching fds for readable/writeable and "exceptions" on filedescriptor. My select man page doesn't state much about the exceptfd descriptor set. ...
2
votes
9answers
4k views

C/C++ How to tell if a program is already running?

In a Windows environment, I don't want two instances of my program running at the same time. Related Is using a Mutex to prevent multiple instances of the same program from running safe?
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
446 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
1answer
319 views

Monitoring directory using ReadDirectoryChangesW API

I am trying to monitor a directory e:\test using ReadDirectoryChangesW API. My Code : #define UNICODE #define WIN32_WINNT 0x0500 #include "stdafx.h" #include <stdio.h> #include ...
1
vote
2answers
103 views

Copying part of the stack and using mmap to map it to the current process

I want my program to do the following: Open a new file. Copy a (page-aligned) portion of the stack that includes the current frame pointer address to the file. Map the contents of the file back into ...
0
votes
1answer
48 views

dlmalloc's mspace_malloc returns strange addresses

[I've solved this problem--please see my last comment below.] In my application, I need to use my own special malloc, based on Doug Lea's dlmalloc: I map an anonymous file (using mmap), create an ...
0
votes
4answers
2k views

Conversion: uid_t to string, off_t to string

I am currently writing a systems programming homework and in one part i need to get some information of a file in a directory. for the stat of file, we have ctime() function which converts time_t ...