Tagged Questions
The system-programming tag has no wiki summary.
15
votes
8answers
2k views
Linux Programming Book [closed]
I'm looking for a good book on Linux system programming and wondered whether anybody could recommend an up-to-date appropriate book that covers the subject well. Things like:
I/O and fileystems
...
9
votes
4answers
1k views
Difference between API and ABI
I am new to linux system programming and I came across API and ABI while reading
Linux System Programming.
Definition of API :
An API defines the interfaces by which
one piece of software ...
9
votes
6answers
1k views
What's the shortest code to write directly to a memory address in C/C++?
I'm writing system-level code for an embedded system without memory protection (on an ARM Cortex-M1, compiling with gcc 4.3) and need to read/write directly to a memory-mapped register. So far, my ...
6
votes
4answers
369 views
Linux System Programming
I wanted to get into systems programming for linux and wanted to know how to approach that and where to begin. I come from a web development background (Python, PHP) but I also know some C and C++.
...
6
votes
2answers
642 views
Directly Jump to another C++ function
I'm porting a small academic OS from TriCore to ARM Cortex (Thumb-2 instruction set). For the scheduler to work, I sometimes need to JUMP directly to another function without modifying the stack nor ...
6
votes
4answers
606 views
How to programmatically really clean Delete files?
So you are about to pass your work-computer to some of your colleague. How do you make sure you really delete all your personal data?
Re-formatting, Re-installing OS will not really solve the ...
5
votes
1answer
796 views
how to make a process daemon
I am trying to understand how can I make my program a daemon.So some things which I came across are In general, a program performs the following steps to become a daemon:
Call fork( ).
In the ...
4
votes
2answers
175 views
Cannot step into system call source code
I have compiled my freebsd libc source with -g option, so that now I can step in into libc functions.
But I am having trouble stepping into system calls code. I have compiled the freebsd kernel ...
4
votes
3answers
875 views
Zombie processes
I'v some questions about zombie processes
what the benefits from zombie process concept?
know that the kernel keeps (PID,termination status, resource usage information) for zombie process
what's ...
3
votes
1answer
40 views
System programming in Ubuntu
[Question moved in from askubuntu.com]
I'd like to get into Ubuntu systems programming; to be specific - developing and debugging device drivers. However, I'm not sure about how to get started, even ...
3
votes
1answer
187 views
vfork() system call
I read that the new process created using vfork() system call executes as a thread in the parent's address space and until the child thread doesnot calls exit() or exec() system call, the parent is ...
3
votes
4answers
323 views
Segmentation fault after the call of pthread_join()
I have written the following code using the POSIX pthread library:
#include<stdio.h>
#include<stdlib.h>
#include<pthread.h>
pthread_t pid1,pid2;
void *test(void *arg)
{
void ...
3
votes
1answer
472 views
Programatically restart USB device in Windows
Some software I am developing requires the presence of a USB device (which I interact with as a SerialPort, with a USB-to-UART bridge).
Sometimes, after a computer is being restarted from ...
2
votes
1answer
41 views
tcgetsid, getsid do the same thing?
While reading apue, it seems to me that those two functions did the same thing.
They both return the same result to the calling process.
So why bother design two of them?
Thanks larsmans. But if ...
2
votes
0answers
102 views
Get Filename from External Process File Handle for Win64bit - C#
can somebody please help me.
I want to get the filename that corresponds to a file handle of an external process.
Currently i managed to do that only on Win32bit and not Win64bit.
Is code signing ...
2
votes
2answers
196 views
How to get information from device manager?
How can I, in my C# applictation, read specific information about a device?
I have tried WMI and it does not provide the information that I need.
The information that I want is stored in the Details ...
2
votes
5answers
200 views
Can the order of execution of fork() be determined?
I'm working on an exercise on the textbook "Operating System Concepts 7th Edition", and I'm a bit confused about how does fork() work. From my understanding, fork() creates a child process which runs ...
2
votes
4answers
289 views
working of fork in c language [closed]
Thanks to all of you for helping me.
Now I have a problem in understanding the working of fork() system call.
I write a code which is following :
#include<stdio.h>
int main()
{
int a, b;
...
2
votes
1answer
82 views
glibc documentation and endianness
glibc documentation on process completion status states that the macro WEXITSTATUS returns the low order 8 bytes of the completion status.
Macro: int WEXITSTATUS (int status)
If WIFEXITED is ...
2
votes
2answers
35 views
Hardware supported OS functions
I would like to know major hardware supported operating system(generic) functions or the categories of that. Is there any link or reference materials I can refer?
2
votes
1answer
172 views
How do I programatically start an internet connection?
I want to programmatically start broadband (PPOE) internet connection.
I'm not sure if InternetDial will work as the documentation clearly says that it initiates a connection to the Internet using a ...
2
votes
1answer
184 views
What is the best book about osdev?
What is the best book about operating systems development and programming? What books can be more helpful for those looking to program operating systems?
2
votes
2answers
200 views
What are all the disadvantages of using files as a means of communicating between two processes?
I have legacy code which I need to improve for performance reasons. My application comprises of two executables that need to exchange certain information. In the legacy code, one exe writes to a file ...
2
votes
1answer
87 views
pagesize and its ratio to 4096
Are there systems, where minimal page of memory (pagesize) has a size not divisible by 2, or by 1024, 4096?
Can it be 3000 or 3500?
Will any posix program break, if pagesize will be not divisible by ...
2
votes
3answers
363 views
Unix system programming - unzipping a file programmatically
What I need to do is unzip a file, (.gz or .z), read the first line and do some stuff according to the first line read. But the C standard library doesn't seem to offer a way to do this.
Is the a ...
2
votes
5answers
1k views
What happens to an open file handler on Linux if the pointed file gets moved, delete
What happens to an open file handler on Linux if the pointed file meanwhile gets:
Moved away -> Does the file handler stays valid?
Deleted -> Does this lead to an EBADF, indicating an invalid file ...
1
vote
1answer
49 views
Want to know Windows Clipboard Internals
I am interested in learning windows system internals and how things work. I am inclined towards learning system programming on windows. With that context, I am curious to know few things on how ...
1
vote
2answers
60 views
sigaction system call: what if sa_mask includes one of the blocked signals?
The sa_mask field of struct sigaction specifies signals that are blocked during handler invocation. Those signals are added to the process block mask just before the handler is invoked and removed ...
1
vote
1answer
36 views
How to pass Multiple inheritable handle values to a child process…?
In windows process management, if we want to pass the values of more than one inheritable handle to a child process, how should it be done.. ? I understand that we can use STARTUPINFO to pass one ...
1
vote
6answers
180 views
What programming languages, without a runtime, besides C, are good for writing programming languages?
I'm looking into a hobby of writing a toy programming language, partly from minor annoyances with other languages, partly so that I can understand what it's like, but mostly just to fool around.
On ...
1
vote
1answer
223 views
Image capture at the time of windows login
I want to know how i can capture image from webcam when a user success or unsuccessfully make login attempt in windows. Is any API for .net available for this purpose or any way to do this.
1
vote
2answers
791 views
NACHOS(JAVA verrsion) tutorials [setup and simple sample]
I need to setup NACHOS java version in Linux and run some simple sample . How to setup and run simple sample ? [need some tutorials and some computer assignment with solution with NACHOS]
0
votes
3answers
64 views
Fork implementation
How is fork system call code written . I want to know some details how a function can return two different values and that to two different processes . In short want to know how fork system call is ...
0
votes
0answers
14 views
Low level details of debuggers on windows, linux, OSX
I'm trying to learn more about debuggers. I know the basics of debugging in general and some low level details on windows. But I would like to learn more about the details of how debugging is ...
0
votes
0answers
37 views
Memory Allocation for Kernel Space and User Space processes
Is there any difference between kernel space & user space MEMORY ALLOCATIONS?
From which region of memory they get allocated.
Can anyone please provide some pointers on this?
Thanks.
Best ...
0
votes
1answer
45 views
Windows System Programming books which covers the non gui part [closed]
I'm a newbie for Windows Programming and while I was searching for ebooks and tutorials many of them that I found were covering the GUI part like msg boxex etc. I found only one book that actually ...
0
votes
1answer
94 views
System wide right click context hook
**Hello..
i am creating English To Gujarati Dictionary WinForm Application.
I need to set a system wide hook to the right click context menu on for text selection.
it means when this ...
0
votes
1answer
66 views
Changes to PostgreSQL source code
I was working around with Postgres a bit. I am trying to get familiar to editing the source code of the same.
One of the suggested exercise was to change the buffer replacement policy of the system ...
0
votes
3answers
85 views
Windows System Programming [closed]
I'm really excited to learn system programming on the windows platform. I just started reading "Programming Windows Fifth Edition" and I noticed that it's mostly GUI-Oriented.
Excuse me for a ...
0
votes
1answer
235 views
Implementing an N process barrier using semaphores
I'm currently training for an OS exam with previous iterations and I came across this:
Implement a "N Process Barrier", that
is, making sure that each process out
of a group of them waits, at ...
0
votes
3answers
400 views
c fork,exec,getpid problem
I'm new to c language and Linux. I have a problem related to fork(),getpid()and exec()function.
I wrote a c program using fork() call the code of my program is following"
code:
#include ...
0
votes
1answer
214 views
Why is sequentially reading a large file row by row with mmap and madvise sequential slower than fgets?
Overview
I have a program bounded significantly by IO and am trying to speed it up.
Using mmap seemed to be a good idea, but it actually degrades the performance relative to just using a series of ...
0
votes
0answers
59 views
KGDB:GDB Terminal Hangs after remote connection establishment
I am a newbie to kernel debugging.
I have managed to establish a remote connection between kgdb running on FreeBSD VM and gdb running on GNU/Linux host.
On freebsd, I did this:
$ kgdb ...
0
votes
1answer
77 views
Equivalent to RUSAGE_THREAD darwin?
I need to measure the cpu usage of individual threads on darwin. On linux I use getrusage(RUSAGE_THREAD, ...) but it's not available on darwin.
0
votes
0answers
230 views
TAPI library help (Caller ID)
I'm stuck with TAPI library and I dont know where to start.
I want to connect to COM3 Modem and show data in to editbox, eg:
RING
DATE = xxxxx
TIME = xxxx
NMBR = xxxxxxxxx
NAME = xxxxxxxx
RING
...
0
votes
2answers
121 views
What is the use of ATOM returned by RegisterClassEx function?
I was reading the documentation of RegisterClassEx function and found that the return type of the function is ATOM.
ATOM RegisterClassEx(CONST WNDCLASSEX *lpwcx);
While creating a window using ...
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
144 views
working code for Advanced Programming in the UNIX Environment 2ed preferably on Ubuntu/gcc4
i was learning Linux system programming and i am going through the APUE 2ed book by
W. Richard Stevens and Stephen A. Rago.
The code given on http://www.apuebook.com/ does not work. Undefined ...
0
votes
1answer
85 views
Does anyone see any problem in this program
After not getting an answer I liked for this question about chroot, I went and rolled my own solution:
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
#include ...
0
votes
2answers
259 views
Changing a process name in runtime
For A.EXE PE file, if the program runs as test mode, I would like to change the process name to "A_TEST.exe".
And if the program runs as safe mode, I want to change to "A_SAFE.exe"
The file name must ...