0
votes
0answers
35 views

What does signal processing do when the process is sleeping?

In the topic How to wake up a user mode sleep process in kernel?, I said that I tried using wake_up_process() to wake up a sleeping process , but failed. Then I tried sending to signal to the process ...
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 ...
0
votes
2answers
87 views

Need to improve the Linux performance for embedded system

I have a ARM OMAP based embedded system with 1 GHZ processor running Linux 2.6.33 cross compiled as CONFIG_PREEMPT. One of the Processes (process 1) is critical and need to run every 4 or 8 milli sec ...
1
vote
1answer
86 views

Shell script process is getting killed automatically

I am facing problem with shell script i have ascript which will be running in infinite loop so say its havin PID X.The process is running for 4-5 hours but automatically the process getting ...
0
votes
1answer
99 views

Linux process memory scheme [closed]

AFAIK there's a partition of a process memory that stores kernel related data and it's marked as read-only. I can't find a factual explanation for why this happens, what is the purpose of this area ...
0
votes
0answers
36 views

getting segmentation fault while accessing page table in linux

I am accessing page table by creating kernel module.Below I have mention part of code.It works well upto printing "valid pmd". After that i am geting "segmentation fault" error. pgd_t *pgdir; pte_t ...
2
votes
0answers
51 views

Unlocking a read lock set while iterating task list before doing a sleepy operation on kernel

From my kernel module I want to iterate over task list and do some sleepy operation for all the processes for which my task->flag is set. I know by holding read_lock(tasklist_lock)/rcu_read_lock, I ...
3
votes
1answer
89 views

Why doing I/O in Linux is uninterruptible?

What's the rationale behind it? What would the bad consequences be if a process doing I/O is allowed to handle signal?
1
vote
3answers
168 views

Can the thread ID of a multithreaded process be the same as the process ID of another running process?

I'm trying to find a way to uniquely identify threads in a multi-process environment. I have a server that keeps track of the different processes connecting to it, some of which are multi-threaded ...
1
vote
2answers
40 views

How is unnecessary copying prevented in fork-exec?

Today I attended a lecture about linux processes. The teacher stated that: after fork() returns, child process is ready to be executed because of Copy On Write mechanism, fork-exec sequence is ...
0
votes
0answers
167 views

How are the concepts of process and threads implementated in Linux kernel? [closed]

Can any one explain how are the concepts of process and threads implemented in Linux kernel ? I am looking for an intuitive explanation with some C snippets ( and important data structures) that ...
1
vote
0answers
112 views

How to traverse through FIFO/RT list of processes in kernel

I am trying to modify the current FIFO/RT scheduler in the kernel. I successfully changed in the kernel, through a system call, the process's current scheduler (from fair/NORMAL) to FIFO. I do this in ...
0
votes
1answer
71 views

Could a Java PID in a kernel oops belong to a thread?

If I am getting the following Kernel oops kernel: CPU: 1 kernel: EIP: 0060:[<f956cb90>] Tainted: G X VLI kernel: EFLAGS: 00010202 (2.6.13-15-smp) kernel: EIP is at ...
1
vote
0answers
47 views

kernel stack & process switching? [duplicate]

Possible Duplicate: Context switch internals can anyone please explain how the process switching is done & what info is copied in the kernel stack in detail. i have read that there is ...
0
votes
1answer
265 views

Memory map of a process in Linux

I have the following code which I assembled and linked to get an executable out of it. .data hello: .ascii "Hello World" .text .global _start _start: movl $4,%eax movl $1,%ebx ...
0
votes
0answers
84 views

How to check if a kernel does local or global scheduling for threads

Which part of the code in kernel/sched/core.c do I see to tell which type of scheduling the kernel is using for scheduling the threads. Or am I looking in the right place at all? A multiple process ...
0
votes
3answers
347 views

Difference between software interrupt routine and user mode function

Well, my question is in the title As we know, an exception handler routine is responsible for switching user mode into kernel mode This involves certain assembly instructions And this is claimed to ...
0
votes
0answers
52 views

What is the best way to understand the internals of execve in linux?

I tried looking into the source code of fs/exec.c (linux kernel code). However, I am not able to understand it line by line. Any suggestions on how should I approach to have a good understanding? Any ...
0
votes
0answers
112 views

All forked processs from linux kernel

How can i list a tree of all forked process from linux kernel module.I know for getting one level of forked process i can use list_for_each_entry(child, &parent->children, sibling) { } But ...
1
vote
1answer
149 views

Segmentation fault in program loaded with custom binfmt handler; same program in ELF format runs seamlessly

I've been working on a custom PE binfmt handler for Ubuntu Linux 12.04, Intel x86_64 architecture (if this sounds familiar, I've posted a few questions related to this project already). I'll apologize ...
3
votes
2answers
344 views

Change user space memory protection flags from kernel module

I am writing a kernel module that has access to a particular process's memory. I have done an anonymous mapping on some of the user space memory with do_mmap(): #define MAP_FLAGS (MAP_PRIVATE | ...
2
votes
1answer
144 views

.text in memory being overwritten during execution

I've been working on a simple PE process loader for Linux. I think I've gotten the basics down; much of the code I use comes from binfmt_elf.c and binfmt_aout.c. My test executable is about is simple ...
1
vote
2answers
566 views

How to measure the memory usage of a process without calling an external program

The memory usage of a process can be displayed by running: $ ps -C processname -o size SIZE 3808 Is there any way to retrieve this information without executing ps (or any external program), or ...
0
votes
0answers
98 views

Want to create a process in D stat on Mirror disk

Please suggest me how I can create a process in D (uninterruptable sleep) stat on mirror disk. Actually there is some bug in other code, that process some times create a process with D stat on MD and ...
2
votes
2answers
188 views

Linux process loader in C++

I'm working on a process loader for a Linux platform in C++; it's just a recreational project. Basically, I would like to load all the sections of an executable into memory manually and then execute ...
0
votes
2answers
113 views

How can I set niceness and process affinity at the same time?

Is there a way to set the nice value of process and its affinity at the same time? For example: taskset -c 0,1 nice -20 proc Update: It works like this. I thought it must me something more ...
0
votes
1answer
295 views

Average working set size for a process

I am running an executable in linux (c++ code). I want to calculate 'average' working set size of this executable? I have no clue in how to proceed. Can some one help me out? Is there any command in ...
0
votes
2answers
126 views

forking a process and waiting for child to exit

Iam programing in C language and trying to learn the concepts of forking a process , bt iam getting confused with the output of the following program. So i need some explanation regarding this to ...
1
vote
2answers
235 views

In a c program, does the whole process terminates when the main thread terminate?

In linux, the whole process exits when the main thread terminates no matter how it terminates,by the function exit() or returns from main. If the main thread returns from main(),it will return to the ...
1
vote
1answer
391 views

bind 1 single process on 1 cpu and moving all IRQs, deamins, rpci on other CPUS

I have a Linux machine with 16 cores in it. // uname -a Linux lndbxdev01 2.6.24.7-108.el5rt #1 SMP PREEMPT RT Mon Mar 23 10:58:10 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux // OS detail Red Hat ...
0
votes
1answer
182 views

How does niceness level affect process scheduling in CentOS 5 (kernel 2.6.18)?

How does niceness level affect process scheduling in CentOS 5 (kernel 2.6.18)? Is there any deterministic mapping between the niceness level and the CPU percentage assigned to one process? If I want ...
1
vote
1answer
132 views

Priority inheritance from parent process by new process in linux

In Linux when a new process is created, it inherits the normal_prio value of it's parent process for it's static_prio. Where does this actually happen?? Is it done in dup_task_struct() function or ...
2
votes
4answers
725 views

Why doesn't for_each_process show every task?

I am trying to loop through every process in a /proc utility I'm writing (a kernel module in /fs/proc). The problem is, I am only seeing processes in the root namespace. I'm trying to use the macro ...
0
votes
1answer
161 views

How to find if the underlying Linux Kernel supports Copy on Write?

For example, I am working on an ancient kernel and want to know whether it really implements Copy on Write. Is there a way ( preferably programattically in C ) to find out?
1
vote
2answers
590 views

System call without context switching?

I was just reading up on how linux works in my OS-book when I came across this.. [...] the kernel is created as a single, monolitic binary. The main reason is to improve performance. Because all ...
1
vote
2answers
425 views

How to prioritize a particular process on start up?

In Linux, I want a process to be assigned with higher priority than usual. I.e. when a process starts I want it's priority to be set to higher value. I want this to be done implicitly, i.e when the ...
1
vote
1answer
588 views

kernel: how to find all threads from a process's task_struct?

Given a task struct for a process or a thread, what's the idiom of iterating through all other threads belonging to the same process?
1
vote
1answer
65 views

kernel: Can preemption occur while do_fork() is executing?

Is do_fork() safe from preemption? In other words, can the parent process allocate a new task struct and then get preempted, before getting a chance to insert the new task struct into the ready queue? ...
2
votes
1answer
278 views

files owner:group doesn't change at location /proc/<pid>/ after setuid()?

I had the requirement of spawning a process as a root, then dropping its privileges to non-root user, so to implement this i used setbit for the binary and changes the owner to root. then i spawned ...
1
vote
2answers
542 views

printing open files of current process

I need to find the open files of the current process in C Linux. So far all I could figure out was current -> task_struct... then there aren't a log of resources...eventually I'm supposed to get to ...
0
votes
1answer
198 views

Queuing multiple task_struct structures?

I would like to queue up multiple struct task_structs in my block device driver. Here, each task_struct would correspond to a userlevel thread which uses the ioctl() system call to send a userspace ...
0
votes
1answer
124 views

fd duplicate from python to child process

i think i have a problem with a ttyUSB device that caused from having 2 open ttyUSB fd's at the same time from different processes. it goes like this: i have a main python process, which opens several ...
12
votes
6answers
1k views

Limit physical memory per process

I am writing an algorithm to perform some external memory computations, i.e. where your input data does not fit into main memory and you have to consider the I/O complexity. Since for my tests I do ...
0
votes
1answer
89 views

how to engineer process priority ..?

My query is regarding enginnering the priority value of a process. In my system, process A(lets say) is running in RR at priority 83. Now I hv another process B in RR, I want B's priority to be higher ...
0
votes
2answers
450 views

Linux Kernel Code Execution Contexts

When a process executing in the user space issues a system call or triggers an exception, it enters into the kernel space and kernel starts executing on behalf of the process. Kernel is said to be ...
0
votes
1answer
126 views

Invocation of release_task() function?

In Linux kernel, the process descriptor of a process is removed from the system by invoking the release_task() function, after the process has terminated. I believe, the wait() system call issued by ...
1
vote
3answers
373 views

sharing address space versus duplicating the page table entries

Before copy on write (COW), when it says that the parent and child process share the same address space, it means that they share the same code segment, data segment, heap and stack right? If the ...
2
votes
1answer
1k views

Linux 2.6 kernel process management

Where can i find some information on process management in the linux 2.6 kernel. Because android uses this and i would like to find out how memory is managed, processes are scheduled and used, etc... ...
2
votes
1answer
1k views

Need for thread_info structure in Linux 2.6 Kernel?

Prior to the Linux 2.6 kernel, struct task_struct was present at the end of the kernel stack of each process. There was no thread_info struct concept. But in Linux 2.6 kernel, instead of task_struct ...
4
votes
3answers
1k views

virtual address range of a process

in short: is the virtual address space of a process contiguous? i need to know something about virtual address allocated to a process by the kernel. please correct me if i am wrong as i proceed on ...

1 2