Tagged Questions
0
votes
0answers
9 views
xinu clkint.c operarating system
I know that 'tod' counts how many clks where taken from the begining of the program.
Is it possible to count how many clks where taken in one second for example ?
0
votes
0answers
26 views
Difference between different Unix like OS [closed]
I used Linux for years now and wish to get a better idea of other Unix like OS.
This may sounds weird but I'm wondering if someone can provide me a general introduction and/or references about the ...
0
votes
1answer
33 views
What is the max file size allowed by the system?
I am given this information, but am not sure how to approach this problem:
Double-Indirect Addressing
Disk block size = 1k
File Point is 64 bits (8 bytes)
Block can hold 128 file pointers
Inode ...
0
votes
1answer
23 views
XINU - Need help understanding a system call - getstk.c
I am having trouble conceptually understanding what is going on towards the end of this system call, and why. I understand the getstk.c method returns the highest memory address of available space, ...
-3
votes
1answer
50 views
Hey. I have error in the Compiling can you someone help? Linux [closed]
i try to compile code in c in the terminal the compiler throw me message i cant understand
it..
the massege is :
user@user-virtual-machine:~/Desktop$ gcc -o run execute.cpp
execute.cpp: In ...
-3
votes
1answer
42 views
Inter-Process Communication [closed]
Im trying to implement a program which takes N processes .
My code doesn't compile properly,i tried to pass an input :./a.out "ls -ll" .
put it didn't execute while ,when i tried with ./a.out ls it ...
1
vote
2answers
80 views
Program goes infinite when catching fork using signal
Hy every one , while doing some experiments using fork and signal , i have came across a program that shows very interesting behavior but after struggling hours with it , i couldn't figure out what is ...
-2
votes
1answer
62 views
Suggestions on starting my own linux OS (very basic) [closed]
I was quite interested to learn and explore more about linux OS by creating one for me. I would like to create a very basic Unix* based which can just execute commands and give information.
I have ...
0
votes
3answers
89 views
Suppress print to console with os.popen? - Python
When using the popen to unix commands, i get certain outputs to the console.
I understand that subprocess.popen has features that supresses the output. Suppress output from subprocess.Popen
Does ...
0
votes
1answer
98 views
kprintf printing out block letters
In my C program in an operating systems code (on the kernal side), I am trying to use kprintf to print a character, but when even I do, it prints it as well as some block character which has these ...
0
votes
1answer
237 views
How to add a new system call in OS/161?
I am trying to add a new system call in my OS/161 code, but I am having trouble figuring out where to add the prototypes. I believe you're supposed to add it to the kernel space and user space, but ...
1
vote
1answer
57 views
C shell printing output infinitely without stopping at gets()
I am trying to use the SIGCHLD handler but for some reason it prints of the command I gave infinitely. If I remove the struct act it works fine.
Can anyone take a look at it, I am not able to ...
0
votes
2answers
28 views
What is 'subdir' defined var in python 3 for all OS?
I have a script in Python which i get 3 arguments from the user
One of the arguments is a folder path in which there are some files i need to use
Since my program is designed for all OS, i would like ...
0
votes
1answer
45 views
For what reason there is PlatformID.MacOSX?
Environment.OSVersion.Platform returns a PlatformID (Info: MSDN PlatformID).
This PlatformID's value can also be "Unix" or "MacOSX".
My question is - for what reason are these values implemented? I ...
0
votes
1answer
63 views
python Popen.wait() daedlock on multiple pipes - why?
Following code finishes correctly,
import subprocess
p = subprocess.Popen("cat", stdin=subprocess.PIPE)
p.stdin.close()
p.wait()
print p.returncode
but following code never end.
import subprocess
...
-1
votes
1answer
207 views
Unix Parent-child process relationship [closed]
i understand well the parent-child relationship in unix processes creation. But i don't understand the rationale behind it :( why do we need to fork from the current process to create a new one, then ...
1
vote
1answer
51 views
Shared memory marked as virtual memory?
I run a program which allocates 64MB as shared memory for IPC communication. pmap shows that chunk of 64MB is allocated. However, "top" shows the RES memory of the proc is just about 40MB! I conclude ...
0
votes
1answer
42 views
What gets in the way of code executing with the same duration every time?
Say you want to benchmark the performance of different JavaScript loops, something like this: http://jsperf.com/fastest-array-loops-in-javascript/11. Or you wanted to benchmark something on the ...
0
votes
1answer
67 views
linux function setenv and putenv [duplicate]
Possible Duplicate:
Questions about putenv() and setenv()
As we know,we can use function setenv and putenv to change environment variables.What are their differences? Do they need to ...
0
votes
2answers
135 views
Does Every Shell command in linux calls a system call at the back end
I have been asked to find a shell command that doesn't make any system call. I have searched a lot and finally ended up here asking that is there any command in linux shell or unix that doesn't call a ...
2
votes
2answers
126 views
How can I check whether a memory address is writable or not at runtime?
How can I check whether a memory address is writable or not at runtime?
For example, I want to implement is_writable_address in following code. Is it possible?
#include <stdio.h>
int ...
0
votes
4answers
337 views
In layman's terms, what is the difference between Mac OS, Ubuntu, Linux, and Unix? [closed]
I understand that it's partly about abstraction, but since I'm a beginner, these concepts are very murky to me. Is Mac OS built on top of Linux architecture? How does Linux relate to Unix/Ubuntu? I've ...
0
votes
1answer
209 views
What is the Significance of the Syntax of /etc/passwd [closed]
I've been scanning through some of the operating system files on my laptop (F17) and while reading the /etc/passwd file I noticed that every line has the same syntax for a different object/command ...
0
votes
1answer
104 views
execvp() system call in C
When an execvp() system call is performed there is no return if the call is successful. Does that mean the process will never terminate? If so is it always in the running state?
I know this is a basic ...
1
vote
1answer
119 views
When using os.execlp, why `python` need `python` as argv[0]
The codes are like this:
os.execlp('python', 'python', 'child.py', #other args#) # this works
os.execlp('python', 'child.py', #other args#) # this doesn't work
I read this question: execlp() in ...
0
votes
0answers
182 views
Does logrotate copy the current file or rename the current file
I read about a few articles on line, but I still do not get how logrotate works.
My config file is as follows:
/var/log/usage.log {
rotate 10
daily
size 1G
missingok
notifempty
...
3
votes
3answers
492 views
How to solve this fork() example in c
int x=0;
int main()
{
for(i=0;i<2;i++)
{
fork();
x=x+5;
}
return 0;
}
I am a newbie to the fork() concept. Is the above tree (with x values) a correct solution for the C code ...
0
votes
1answer
31 views
Large PATH variables
Could having a very large PATH variable noticeably slow down your computer? If so, would it only slow down the computer when using terminal or would it slow down the machine in general?
Practically ...
1
vote
1answer
58 views
Can a read() by one process see a partial write() by another?
If one process does a write() of size (and alignment) S (e.g. 8KB), then is it possible for another process to do a read (also of size and alignment S and the same file) that sees a mix of old and new ...
0
votes
3answers
1k views
how to get process id attached with particular port in sunos
I am trying to get processes attached with a port 7085 on SunOS. i tried following commands.
netstat -ntlp | grep 7085 didn't return anything
netstat -anop | grep 7085 tried this one also. This ...
1
vote
3answers
128 views
How to operating systems… run… without having an OS to run in? [closed]
I'm really curious right now. I'm a Python programmer, and this question just boggled me: You write an OS. How do you run it? It has to be run somehow, and that way is within another OS?
How can an ...
2
votes
1answer
102 views
Unexpected output from cat `bash` command
Can someone please explain this? I ran the commands as shown below
$ cat `bash`
$ ls
$ ctrl+D
and it's giving me some unexpected output on terminal.
NOTE: bash is in backquotes.
1
vote
1answer
69 views
Behaviour of soft links pointing to each other in unix filesystem? [closed]
When I made two soft links in a directory pointing to each other
eg.
abc->xyz and xyz->abc
I was not able to open that directory graphically in ubuntu.
When I clicked that dierctory it ...
1
vote
2answers
287 views
Understanding concurrent file writes from multiple processes
From here : Is file append atomic in UNIX
Consider a case where multiple processes open the same file and append to it. O_APPEND guarantees that seeking to the end of file and then beginning the ...
0
votes
1answer
77 views
Monitors in operating systems
"Monitors are language specific constructs" - What does this mean? Does this mean they are compiler/programming language dependent? If so,they can't be implemented in C right?
I was asked to ...
0
votes
0answers
43 views
AFS file system documentation
I am looking for documentation on the AFS file system.After searching the web I have found lot of information but not in very detail.I need a lot of information on subjects like the file metadata, ...
5
votes
5answers
92 views
Data section in a.out
here is a simple code that I executed
int a;
int main()
{
return 0;
}
Then after compiling with gcc I did
size a.out
I got some output in bss and data section...Then I changed my code to ...
-4
votes
1answer
108 views
xv6 rev6 page fault handler
I can't find the page fault handler in xv6-rev6 source code. Is it I missed it or there is no page fault handler at all? I do acctually found " #define T_PGFLT 14 // page fault " in ...
-2
votes
4answers
100 views
Printing the Child Number After Fork() [closed]
I am reading a book about Operating Systems and am fairly new to C programming as well (tends to complicate things) but am curious as to why I cannot print the incremented i value when every child is ...
3
votes
0answers
88 views
Stop Unix Stack Randomization in C [duplicate]
Possible Duplicate:
How to disable address space randomization for a binary on Linux?
Is there a system call / library in C that will stabalize the program's stack, and stop the OS from ...
2
votes
2answers
1k views
Creating child processes/killing processes in C/UNIX
So I've been working on this today and I'm pretty sure I'm close, but I'm still a bit confused on how to terminate child processes and if I'm doing this assignment correctly. Here's the problem ...
1
vote
2answers
117 views
Read multiple files in a directory and compare with another file
I have two files
File 1 in reading directory is of following format
Read 1 A T
Read 3 T C
Read 5 G T
Read 7 A G
Read 10 A G
Read 12 C G
File 2 in directory contains
Read 5 A G
Read 6 T C
...
-2
votes
1answer
284 views
read system call taking reading from STDIN
When does the Read System call terminates when taking input from STDIN ??
1
vote
1answer
94 views
Segfault when exiting main
I am writing a pretty basic C program to try to better understand how the time library works and to learn more about C. The problem is, I'm getting a segfault when I return 0 at the end of my main ...
-2
votes
3answers
189 views
How do processes branch out when you use fork() in a for loop?
fork() calls outside a loop are easy to figure out, but when they are inside a loop I find it difficult. Can anyone figuratively explain how the processes branch out with an example like this one?
...
2
votes
5answers
303 views
What is the difference between fork()!=0 and !fork() in process creation
Currently, I am doing some exercises on operating system based on UNIX. I have used the fork() system call to create a child process and the code snippet is as follows :
if(!fork())
{
printf("I am ...
0
votes
1answer
410 views
Darwin OS is discountinued, but can the original source code still be found?
I have searched all around google for the originial source for the last release of Darwin OS that apple release. What I found was different OSes such as GNU Darwin and pureDarwin that were based on ...
-3
votes
1answer
123 views
How does Unix System V allocate memory [closed]
For example, does it use a free list, memory pooling, buddy system, etc.? Please provide a source.
0
votes
1answer
183 views
implementing anonymous pipe
I'm trying to implement an anonymous pipe without using system calls:
pipe(), fork(), mkfifo(), open(), read(), write(), close() .
Basically i implemented the anonymous pipe with a shared memory in ...
0
votes
1answer
2k views
Wireless LAN phy0 hard blocked
I'm using latest Fedora 17 3.3.4-5.fc17.x86_64
I used WiFi several days, but today everything just got wrong with no reason.
I couldn't get WiFi working using gnome, so I opened a terminal and tried
...

