Sponsored Content
Top Forums Programming Problem with external program launch Post 302289615 by Zipi on Friday 20th of February 2009 03:04:20 AM
Old 02-20-2009
Many thanks for your reply Smilie

Quote:
I'm wondering though, what priority is it being reduced from? Did it have ludicriously high priority in the first place, to halt your system like that? What user was your GUI running it as?
The main app's priority is -2 with a ROUND_RR scheduling policy,and it must be run by root user,or it won't work (i cant change this).If i remember well,it's the highest priority i can see using the "top" command,so this explains why my system halted (does it?).

Quote:
Lastly, I must wonder precisely by which mechanism this recordmydesktop process was ever started if not fork/exec
Smilie Before,i started it calling the "system" function,but after some readings i found out that it's not a suggested way to run external programs,for some problems related to the shell it's based on,so i passed to fork/exec.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to launch program though telnet

I have launched telnet on nt and have connected to a unix server, I'm trying to run a program on the unix server which will launch a gui, but when I try to launch it I get the message "display not set\n" "By default set it to 0.0" I can sit down at the unix machine and launch the program with... (3 Replies)
Discussion started by: cbachman
3 Replies

2. Shell Programming and Scripting

Passing value to an external program problem...

This code is in my 'case' statement and it all else works fine. The problem I have is that the value in 'procno' is not passed on to the external program (fireit). It is passing all zeros instead of the actual process number. By the time I get to this case statement, I know the "Number" and... (1 Reply)
Discussion started by: giannicello
1 Replies

3. Programming

launch an executable from a C++ program

Hi everybody! Could you please tell me how can I launch an executable from a C++ (on unix) program? thanks in advance! (2 Replies)
Discussion started by: nadiamihu
2 Replies

4. Shell Programming and Scripting

BASH: how to launch a program with parameters

Hi, I'm a pretty big fan of BASH scripting. I've got a bunch I use for random things and lately a couple issues have been plaguing me. Both are somewhat related, in that they deal with filenames with spaces and "escaped" characters and with launching a program with command line arguements... (5 Replies)
Discussion started by: TinCanFury
5 Replies

5. Shell Programming and Scripting

Shell Script to launch C program

Hi there, im new too shell scripting and was wondering if it is possible to create a shell script to take in a variable and load a c program. My C program is a file monitor, and is started by using the terminal and using to following code ./monitor FileToBeMonitored is it possible to have... (12 Replies)
Discussion started by: gazmcc182
12 Replies

6. Shell Programming and Scripting

Launch a windows program from perl script

Hi i wanted to know if any one can give me an example on how to launch a windows program in a perl script. I wanted to open the nmap software on my computer with a perl script, i heard this can be done with the system function. Would the function be in this format: $text =... (1 Reply)
Discussion started by: kingbp
1 Replies

7. Shell Programming and Scripting

Perl script timer on program launch

So I am attempting to get a short but complex perl script to be able to time out an application that I will launch from a command line. The terminal I use is MKS C SHELL and I am having trouble doing the a job spawn that will launch the application and keep time on it. I know you could do this... (1 Reply)
Discussion started by: vas28r13
1 Replies

8. Shell Programming and Scripting

Input keyboard keys upon program launch

Hey guys, first post! I want to write a script that will wait 1 second and then input the keys CTRL+ALT+J to the application i just opened. The program is dosbox, and thay key combination starts video recording :) I have no idea how to program this, can anyone help please? thanks in advance! (2 Replies)
Discussion started by: brunobliss
2 Replies

9. Shell Programming and Scripting

Launch a text program inside a konsole at startup

Hi ULFers, I am trying to setup a (very) simple startup script on a centos 6.4 computer and it kind of failed.... Here are the details : As said just above the computer setup is running a CentOS 6.4 x64, on this computer a vncserver is automatically started (by a chkconfig vncserver on), i... (1 Reply)
Discussion started by: pierpier
1 Replies

10. Shell Programming and Scripting

Having trouble using expect to launch vpn program

Hello all. I am a linux and linux scripting newbie so please forgive my ignorance. I have been tasked to write what I thought should be a pretty simple script that does the following: 1) Loads our forticlient ssl vpn command line client 2) sends the vpn password to the client Pretty... (2 Replies)
Discussion started by: wblakenc
2 Replies
sched_setparam(3)					     Library Functions Manual						 sched_setparam(3)

NAME
sched_setparam - Sets the scheduling parameters of the specified process (P1003.1b) LIBRARY
Realtime Library (librt.so, librt.a) SYNOPSIS
#include <sched.h> int sched_setparam ( pid_t pid, const struct sched_param *param); PARAMETERS
pid Specifies the ID of the process whose scheduling parameters are set. If pid is zero, the scheduling parameters of the calling process are set. *param Specifies a pointer to a sched_param structure, which contains the scheduling parameters of the specified process. Currently, the sched_param structure contains only a priority field. The value of the priority value is any integer within the priority range for the current scheduling policy of the process specified by pid. DESCRIPTION
The sched_setparam function changes the scheduling parameters of a process. Setting priorities such that the most critical process has the highest priority allows applications to determine more effectively when a process will run. At run time, a process starts out with an initial priority of SCHED_PRIO_USER_MAX. A call to the sched_setparam function that raises the priority of a process also raises the maximum priority for the process. This higher maximum priority exists for the life of the process or until the priority is set to a new, higher priority through another call to the sched_setparam function. The maximum priority cannot be adjusted downward, but subsequent calls to the sched_setparam or sched_setscheduler functions can specify that a process run at a lower priority. You must have superuser privileges to set the priority above the user maximum, SCHED_PRIO_USER_MAX. A superuser can set the priority out- side the range of the specified pid's scheduling policy. When the function completes, the target process resumes execution after all other runnable processes of equal or greater priority are scheduled to run. If the priority of the target process is set higher than that of the calling process, and if the target process is ready to run, then the target process will preempt the calling process. If the calling process set its own priority lower than some other process, then the other process will preempt the calling process. In either situation, the calling process might not receive notification of the completion of the requested priority change until the target process has executed. The scheduling parameters of the process as indicated by pid are obtained with a call to the sched_getparam function. The priority of a process is inherited across fork and exec calls. RETURN VALUES
On a successful call to the sched_setparam function, the scheduling parameters are set and a value of 0 (zero) is returned. On an unsuc- cessful call, a value of -1 is returned and errno is set to indicate that an error occurred and the priority is unchanged. ERRORS
The sched_setparam function fails under the following conditions: [EINVAL] One or more of the requested scheduling parameters is outside the range defined for the specified pid's scheduling policy. This error does not apply for superusers. [EPERM] The requesting process does not have permission to set the scheduling parameters for the specified process, nor does it have appropriate privilege to invoke the sched_setparam function. [ESRCH] No process can be found corresponding to that specified by pid. RELATED INFORMATION
Functions: getpid(2), sched_getparam(3), sched_getscheduler(3), sched_setscheduler(3) Guide to Realtime Programming delim off sched_setparam(3)
All times are GMT -4. The time now is 10:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy