1
vote
4answers
60 views
Run and forget system call in php
So I am trying to execute some script from my php code. That lives in page blah.php
<?php
// ....
// just basic web site that allows upload of file...
?>
Inside …
0
votes
2answers
57 views
Assembly and System Calls
Im having a bit of trouble understanding the more complex system calls in assembly. I wrote a exec system call and it worked great
.bss
.text
.globl _start
_start:
#exit(0) …
1
vote
2answers
75 views
system call does not work same as command line
Ok I have two programs, and one calls another using executable from another.
I am running it on Ubuntu terminal
This is folder structure in place
.../src/pgm1/pgm1
.../src/pgm0/p …
1
vote
1answer
67 views
Writing a System Calls for linux
i try to write a system call. I followed these steps:
linux/arch/x86/kernel/syscall_table_32.S ----> . long sys mycall
linux/include/linux/syscalls.h --------> asmlinkage …
2
votes
2answers
60 views
How does Windows switch to supervisor mode during a system call?
How does Windows switch to supervisor mode during a system call? I heard something about a "trap 0", but that doesn't even seem like an x86 instruction. I stepped through some syst …
0
votes
3answers
68 views
Is it possible using Linux’s clone() system call to run multiple applications in the same address space?
If you don't pass the CLONE_VM flag to clone(), then the new process shares memory with the original. Can this be used to make two distinct applications (two main()'s) run in the s …
0
votes
2answers
41 views
MIPS Syscalls and $t registers
MIPS registers have a convention - $s registers are to be preserved across subroutine calls, so if your subroutine modifies them, it should save them to the stack, while $t registe …
0
votes
2answers
69 views
Android: Is it possible to observe system calls?
I was wondering if there is a way to observe the system calls in Android using a service... Is something like this remotely possible using Java or do I have to get down into native …
1
vote
1answer
31 views
Why Would WIFEXITED Return True on Running Process?
When I wait on a specific running process group that is a child process, WIFEXITED returns true saying the process exited? Is this the way it works? Seems there is something I am …
7
votes
6answers
614 views
Why is my “cat” function with system calls slower compared to Linux’s “cat”?
I've done this function in C using system calls (open, read and write) to simulate the "cat" function in Linux systems and it's slower than the real one...
I'm using the same buff …
0
votes
1answer
30 views
Why sshfs does not work with backtick?
When I do the following:
`sshfs my@host.com /tmp/dir1/`
in a irb console, the console freezes.
If I use something like system("sshfs my@host.com /tmp/dir1/") it works, but I ne …
1
vote
5answers
133 views
How to determine where code spends a lot of time in a kernel space (system calls)
I noticed that 10% my code run is system space. However I do NOT know which system calls. I suspect, though, it is either has to do files or timestamps.
Is there a tool to figure …
1
vote
1answer
76 views
Virtual Machines and Handling Memory and System Calls
This is a homework problem that I have. I have been doing some research and couldn't find much. I did find a powerpoint but could not make much sense of it due to lack of text.
ht …
0
votes
4answers
144 views
How to get rid of the warning with time.h in C++?
When I use this
#include<time.h>
//...
int n = time(0);
//...
I get a warning about converting time to int. Is there a way to remove this warning?
-2
votes
5answers
480 views
C++ Unix system call - read one line at a time
I have a file called foo.password that contains something along the lines of
user1:pw1:stuff1
user2:pw2:stuff2
user3:pw3:stuff3
user4:pw4:stuff4
Is there a Unix system call that …
