Tagged Questions
The systems-programming tag has no wiki summary.
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 ...
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 ...
5
votes
2answers
462 views
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.
...
4
votes
5answers
385 views
On the use and abuse of alloca
I am working on a soft-realtime event processing system. I would like to minimise as many calls in my code that have non-deterministic timing. I need to construct a message that consists of strings, ...
3
votes
2answers
107 views
How to get the exit code of a system process?
Say I want to execute the command unrar x archivename from within Haskell.
What is the best way to do it and how do I get the exit code of the command? If the command exited successfully I want to ...
3
votes
1answer
157 views
Micro-optimizations: using intptr_t for flag/bool types
From what I understand, the definition of intptr_t varies by architecture -- it is guaranteed to have the capacity to represent a pointer that can access all of the uniform address space of a process.
...
3
votes
2answers
368 views
Boost Thread Specific Storage Question (boost/thread/tss.hpp)
The boost threading library has an abstraction for thread specific (local) storage. I have skimmed over the source code and it seems that the TSS functionality can be used in an application with any ...
3
votes
1answer
2k views
Does 64-bit Windows use KERNEL64?
I was looking at some libraries with dumpbin and I noticed that all the 64-bit versions were linked to KERNEL32. Is there no KERNEL64 on 64-bit Windows? If not, why?
All my operating systems are ...
2
votes
1answer
56 views
Using the stdout and stdin with System.IO.runCommand
I am trying to capture the stdin and stdout from runProcess into a string for analysis.
However, setting up the handles seems to be rather difficult. I wandered into GHC.IO.Handle, and that seems to ...
2
votes
2answers
678 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 ...
2
votes
8answers
653 views
Low level systems programming with C++
I have been using C++ for a while now and I began to get interested in lower level system programming like drivers and stuff. Even some kind of primitive operating system could be very interesting ...
2
votes
1answer
2k views
Information on N-way set associative Cache stides
Several of the resources I've gone to on the internet have disagree on how set associative caching works.
For example hardware secrets seem to believe it works like this:
Then the main RAM ...
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
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
1answer
317 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 ...
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 ...
0
votes
1answer
44 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
1answer
195 views
Which Tanenbaum DS/OS book should I get? [closed]
I want to refresh and deepen my knowledge about systems programming (operating systems, embedded systems, network programming and related low-level topics). I always wanted to buy one of Tanenbaum's ...
0
votes
1answer
100 views
RFC /advice: On secure/unsecure rpc/event-stream protocol design
SSL seems quite bloated for what I want to do, and I have a passionate hatred for OpenSSL (NSS might be useable). I need to open a TCP channel between two nodes that will be used for RPC / encrypted ...
0
votes
2answers
134 views
Is it possible to do systems programming in J or something close to it?
just wondering if this is possible? if so id like to see some online texts about it b/c I googled and couldnt find any haha, thanks
0
votes
1answer
143 views
How does a portable Thread Specific Storage Mechanism's Naming Scheme Generate Thread Relative Unique Identifiers?
A portable thread specific storage reference/identity mechanism, of which boost/thread/tss.hpp is an instance, needs a way to generate a unique keys for itself. This key is unique in the scope of a ...
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 ...