A system call is used by programs to request services from the operating system's kernel.

learn more… | top users | synonyms (2)

0
votes
1answer
13 views

Call 5 interface on MS-DOS

I have a Hello, World program for MS-DOS that uses int 21h to make system calls. mov dx,hello mov ah,9 int 0x21 mov ah,0 int 0x21 "hello" is the address of the string 'hello, world',13,10,'$'. The ...
0
votes
2answers
26 views

non blocking php system call - tshark

I am trying to start a tshark process capturing on the interface wlan0 for 5 minutes. As read in other threads I tried to direct output to a file like this: $log = ...
0
votes
0answers
7 views

memory management related system calls fro copy command in linux

strace cp reg.txt new.txt for the above command how can i determine which system calls are related to memory management? i know a few basic ones like map, mmap. the output has system calls like ...
0
votes
2answers
28 views

waitpid(pid, status, options) not always setting status

I'm working on replicating shell pipes for an assignment. I had the pipeline all working (and have not since changed the pipeline code, so that is known to work), but still needed to terminate the ...
0
votes
3answers
59 views

Write and read, socket AF_UNIX in C

I'm writing some socket functions in C but I encounter this problem. I have a struct with three fields: typedef struct { char type; unsigned int length; char *buffer; } ...
0
votes
1answer
50 views

C/Unix Strange behaviour while using system calls and printf

I'm a newbie, trying to really understand systems programming. In the following program, I'm reading a file called 'temp1' (containing 1 2 3 4) and printing its contents to stdout. However, I also ...
0
votes
1answer
18 views

How do I make calls to operating system functions in the language of my choice?

This is a question that I have long been wanting answered. Major operating systems such as Windows and Mac OS X generally only "support" one or a few languages (i.e. C++, C#, VB for Windows, ...
-4
votes
2answers
66 views

Show the list of running processes in C

Can you suggest me a system call that retrieves the current running processes? (I have to write a C function like top) I tried to read the proc/ folder but is not good in my case.
0
votes
3answers
33 views

error undefined for defined constructor

I'm getting an error that i have been working on, on the side for some time the error is "The constructor HangmanPanel() is undefined" but i defined this in Hangman().., I think it may want me to use ...
0
votes
0answers
26 views

Android Adobe air call back

I use call phone. navigateToURL(new URLRequest("tel:55555")); in adobe air , as3 . now i need play a voice when the call is being accept. for exmple : my app dials 555555 and when the user accept ...
0
votes
2answers
36 views

System calls that manage directories

In order to implement some security measures in a User-mode-Linux kernel, I am trying to edit system calls, such as opendir and readdir, that would control directories so that I can guarantee a ...
-3
votes
1answer
54 views

how to use write system call

my problem is system call write. arc file contains multiple file contains.i know each file size. and i want create different output files and i want write these contains into the these output files. i ...
1
vote
1answer
25 views

File/Calls substitution like LD_PRELOAD

Does there is usual utility which makes a substitution on some calls like execve and open? Like LD_PRELOAD for calls. Example: we have prog_A which uses prog_B. some days ago prog_B was updated ...
2
votes
0answers
55 views

Blocked system call doesn't let SIGKILL kill the process

I have a query regarding propagation of signals between kernel threads. The scenario is like this: From a user space app, a system call is made, the kernel creates a thread (lets name it ...
1
vote
1answer
99 views

Adding system call to linux kernel 3.8.8

I am trying to write my own system call in linux kernel version 3.8.8. I searched on the internet and there are steps how to do it. Especially this link http://franksthinktank.com/addsyscall/ is good. ...
0
votes
1answer
29 views

windows dll file copy in autohotkey

hay i am trying to over come the non responsive window message when using autohotkey's filecopy feature. i am trying to do this though a dll call to Kernel32.dll link where for more information is ...
0
votes
2answers
25 views

Importance of knowing if a standard library function is executing a system call

Is it actually important for a programmer to know if the standard library function he/she is using is actually executing a system call? If so, why? Intuitively I'm guessing the only importance is in ...
0
votes
2answers
66 views

Slice arrays in Perl

I know there are easier ways to do this, but I must demonstrate removing the first seven lines of a system call (top -bn1) and write the results to a file using array slices. I currently am having ...
0
votes
2answers
63 views

let the system call `select()` block until a socket gets something to read

In the man page of select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout), it says: If timeout is a null pointer, the select blocks indefinitely. Does the ...
0
votes
0answers
12 views

How can i access the pid of a newly added process in Ubuntu

The main task i have to carry out is trace the system call of processes in ubuntu. Problem is i am unable to trace them continuously, i.e. as soon as they are added to system they should get traced. ...
0
votes
1answer
31 views

Trying compiling in minix3

I'm using minix3 on VMware Player and i'm having trouble compiling a system call. I actually tried to see if i can add a simple command in a system call just to see that working and i put a simple ...
0
votes
2answers
42 views

Linked assembly subroutine doesn't work as expected

I'm writing a simple subroutine in FASM to print 32-bit unsigned integers to STDOUT. This is what I came up with: format elf public uprint section ".text" executable uprint: push ebx push ...
0
votes
1answer
25 views

wait() system call - does the child ignore this?

So I've seen the following code during my revision. I know the wait() causes the parent to wait for the child to stop but I have a few questions regarding this. Firstly, when the child is created, is ...
0
votes
1answer
34 views

Where is the definition of __NR_accept?

As I known, the syscall numbers' definitions are in the format of __NR_xxxx in asm/unistd.h, but I cannot find the definition of __NR_accept, Why?
0
votes
1answer
44 views

Get http header in basic TCP server using linux system call

I have a basic TCP server which uses linux system calls (setsockopt , bind , listen , accept , recv ). recv command returns me the request message which is nothing but complete URL. Is there any way I ...
3
votes
2answers
49 views

How can I convert path containing wildcard to corresponding file entries in C program?

I'm trying to implement the ls command with wildcard, *. I have just learned the fact that most shells convert ls-argument containing * to the corresponding entries when performing ls command. For ...
1
vote
0answers
32 views

How can I implement the command 'ls' with wildcard, '*'?

I have just learned about the function fnmatch(). But I don't know start place. There are many possible cases. So I'm confused dealing with these all cases. For example, Let me assume that executable ...
0
votes
0answers
43 views

Calling minix _syscall() from within a function

I have been running into a very strange problem in minix lately with regards to a system call I wrote. Basically the code runs fine from within a main() function, and the call does what it should. ...
3
votes
2answers
94 views

Constraining r10 register in gcc inline x86_64 assembly

I'm having a go at writing a very light weight libc replacement library so that I can better understand the kernel - application interface. The first task is clearly getting some system call wrappers ...
1
vote
1answer
42 views

Detect subprocess environment variables change

I'm running dynamic list of system commands from Perl. Sometimes, those commands are scripts that make (temporal/in-process) modifications to the environment variables. For example, consider this ...
0
votes
0answers
19 views

Changing affitnity by system call

I'm developing a system call to Ubuntu kernel version 3.7.2, that will recive some processes and a cpu number, and i want to make this processes running only on this cpu. i founded the variable ...
2
votes
2answers
87 views

System calls, shell commands and programs

I'm trying to understand how programs, shell commands and operating systems work. Please excuse my ignorance since I'm new to this. When I use a C compiler on the command line, when I type cc ...
0
votes
3answers
79 views

blocking recv() that receives no data (TCP)

I'm attempting to write a simple server using C system calls that takes unknown byte streams from unknown clients and executes specific actions depending on client input. For example, the client will ...
0
votes
1answer
91 views

Why program doesn't enter into the if statement when it should

I'm trying to implement an 'ls' command that lists file and directories. I have set the incoming argument array to the following: argv[0] = "./a.out" argv[1] = "-l" argv[2] = "test.c" Here is my ...
0
votes
1answer
59 views

Solaris 11 XOpenDisplay return NULL

I am getting problem while running following program over Solaris 11. The XOpenDisplay function always return NULL. The same program run fine over Solaris 10. #include <stdio.h> #include ...
0
votes
1answer
24 views

Where is the system call handler for pause() system call?

I could find the declartion and also entry in syscall_table, but i couldn't find any definitions for any architecture. http://lxr.linux.no/linux+v2.6.36/include/linux/syscalls.h#L384
3
votes
1answer
38 views

What is to prevent a user process from using the trap instruction independently?

The stub routine for a system call switches to kernel mode via a trap instruction. What is to prevent a user process from using the trap instruction independently to switch to kernel mode,and then ...
1
vote
2answers
59 views

linux open returns 0

The code is like this: int fd = open(filename, O_RDONLY); "max open files" is 1024. The process may opened hundreds of files. At the beginning, it works good. After a while, open returns 0. I don't ...
0
votes
0answers
30 views

Add new system call to Nachos

When I added a new system call (Fork) to Nachos, it keeps prompting: Unexpected user mode exception5 Received Exception 5 type: 2 Unexpected user mode exception5 Received Exception 5 type: 2 ...
2
votes
1answer
52 views

Why does read not work yet fgets work fine in my program?

So the specific part of my program looks like this: printf("Please input command:\n>"); While 1 { if ((int c = read(STDIN_FILENO, input, Buffer_size) == 0) { break; } rest of ...
0
votes
2answers
221 views

C program that executes bash commands inside xterm with execl

I have a command that execute well in the normal terminal on Linux: xterm -e bash -c "some commands" I want to execute the above command using c program execXX system calls. I try to use the ...
-2
votes
4answers
184 views

How to write int to file using write system call and read them exactly as written?

How can I write int, float or other types to a file using the write system call of UNIX? I want to do so without using any lib function like fprintf or fwrite. I want to use file descriptor and not ...
-3
votes
3answers
109 views

how to determine if two file are identical in c using system call

i need to see if 2 files are identical so i used struct stat fdin = open(argv[0],O_RDONLY); statos= fstat(fdin, &stat); close(fdin); fdin = open(argv[1],O_RDONLY); statos1= ...
0
votes
3answers
60 views

how to find all files that dont have a matching file with the same name but different extension

i have a folder with over 1 million files. the files come in couples that only differ by their extension (e.g. a1.ext1 a1.ext2, a2.ext1, a2.ext2 ...) i need to scan this folder and make sure that it ...
2
votes
1answer
199 views

How can I invoke system call of Linux/UNIX in golang

For some reasons, I need invoke some system calls of the system(Linux) I checked the documentation of the 'syscall' package and couldn't find anything about it. Then I just saw a project ...
0
votes
1answer
71 views

Identifying that a file is being copied outside the computer in LKM

Assuming that i have Loadable-Kernel-Module inserted in linux-kernel and have hooked read, write, open and close functions. So now i can stop access to any file but i want to stop files from being ...
0
votes
1answer
46 views

Windows programs's system calls

Is it possible to log all system calls made by a specified program? For example I have a GUI tool, wrapping some command-line based tools. I need to know how does it start command-line programs, what ...
1
vote
0answers
74 views

Difference betwee vsdo and vsyscall

I am try to understand the mechanism used by Linux to invoke a system call. In particular, I am struggling to understand the VSDO mechanism. Can it be used to invoke all system calls? And what the ...
0
votes
1answer
43 views

why are system calls handled using interrupts?

I have a basic question about the linux system call. Why are the system calls not handled just like normal function calls and why is handled via software interrupts? Is it because, there is no ...
1
vote
2answers
69 views

Understanding simple Linux syscall in libc.a

I'm running a 64-bit Debian 4.7.2-5 Linux system, using glibc-2.13-1. While I was searching for the assembly code of some function calls in libc.a I came across this: file format elf64-x86-64 ...

1 2 3 4 5 11