Tagged Questions

This tag is about operating system processes. A *process* is an instance of a computer program being executed. Many operating systems let multiple processes run concurrently. The operating system takes care of isolating processes one from another in order to provide data integrity and also provides means for interprocess communication (IPC)

learn more… | top users | synonyms

77
votes
3answers
51k views

How do I get the application exit code from a Windows command line?

I am running a program and want to see what its return code is (since it returns different codes based on different errors). I know in Bash I can do this by running echo $? What do I do when ...
73
votes
15answers
136k views

Linux: How to measure actual memory usage of an application or process?

How do you measure the memory usage of an application or process in Linux? I've read here that "ps" is not an accurate tool to use for this intent. Thanks, Kenneth
43
votes
10answers
44k views

Linux: Prevent a background process from being stopped after closing SSH client

I'm working on a linux machine through SSH (Putty). I need to leave a process running during the night, so I thought I could do that by starting the process in background (with an ampersand at the end ...
39
votes
8answers
48k views

What is the difference between a process and a thread

What is the technical difference between a process and a thread? I get the feeling a word like 'process' is over used and there is also hardware and software threads. How about light-weight processes ...
37
votes
12answers
15k views

How to make child process die after parent exits?

Suppose I have a process which spawns exactly one child process. Now when the parent process exits for whatever reason (normally or abnormally, by kill, ^C, assert failure or anything else) I want the ...
35
votes
21answers
2k views

What is process and thread?

Yes, I have read many materials related to operating system. And I am still reading. But it seems all of them are describing the process and thread in a "abstract" way, which makes a lot of high level ...
28
votes
9answers
4k views

Process vs Thread

Recently I have been asked question in the interview whats the difference between process and thread. Really I did not know answer. I thought for a minute and gave very weird answer. Threads share ...
26
votes
4answers
9k views

Who “Killed” my process and why?

My application runs as a background process on Linux. It is currently started at the command line in a Terminal window. Recently a user was executing the application for a while and it died ...
23
votes
8answers
17k views

How do I trim a file extension from a String in Java?

What's the most efficient way to trim the suffix in Java, like this: title part1.txt title part2.html => title part1 title part2
21
votes
5answers
51k views

How to pause / sleep thread or process in Android?

I want to make a pause between two lines of code, Let me explain a bit : -> the user clicks a button (a card in fact) and I show it by changing the background of this button : ...
21
votes
26answers
9k views

What are the most useful software development metrics?

I would like to track metrics that can be used to improve my team’s software development process, improve time estimates, and detect special case variations that need to be addressed during the ...
20
votes
19answers
1k views

Code Quality

I work for a software development company and we have around 100 people working on a product, 1/3 of these people are QA. Lately management wants to have a better way to rate individual programmers ...
20
votes
6answers
33k views

How do I kill a process using Vb.NET or C#?

I have a scenario where I have to check whether user has already opened Microsoft Word. If he has, then I have to kill the winword.exe process and continue to execute my code. Does any one have any ...
18
votes
1answer
1k views

.NET4: In-Process Side-by-Side Execution Explained

Overview: I'm interested in learning more about the .NET4 "In-Process Side-by-Side Execution" of assemblies, and need additional information to help me demystify it. Motivation: The application in ...
18
votes
5answers
17k views

Starting a background process in python

I'm trying to port a shell script to the much more readable python version. The original shell script starts several processes (utilities, monitors, etc.) in the background with "&". How can I ...
18
votes
7answers
32k views

How to stop java process gracefully?

How to stop java process gracefully in Linux and Windows? When does Runtime.getRuntime().addShutdownHook gets called, and when it does not? What about finalizers, do they help here? Can I send some ...
16
votes
4answers
666 views

Get StartAddress of win32 thread from another process

Background: I've written a multi-threaded application in Win32, which I start from C# code using Process class from System.Diagnostics namespace. Now, in the C# code, I want to get the name/symbol ...
16
votes
8answers
2k views

When should you not Scrum?

I have seen a lot of companies buy into the Agile/Scrum process and basically use it for every project, regardless of what it is. When is Scrum not appropriate and can cause more harm than good ...
16
votes
7answers
6k views

Is there a way to change effective process name in Python?

Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set ...
16
votes
3answers
8k views

How to spawn a process and capture its STDOUT in .NET?

I need to spawn a child process that is a console application, and capture its output. I wrote up the following code for a method: string retMessage = String.Empty; ProcessStartInfo ...
16
votes
12answers
3k views

How to blend CMMI and Scrum?

I work in a shop that is certified at CMMI level 5. This certification is important because it gives us access to certain customers and contracts. I'm looking at how to blend Scrum with CMMI. I've ...
15
votes
2answers
156 views

Process.WaitForExit inconsistent across different machines

This code runs as expected on a large number of machines. However on one particular machine, the call to WaitForExit() seems to be ignored, and in fact marks the process as exited. static void ...
15
votes
3answers
591 views

Guarantee code execution even on process kill

I need to execute a portion of code (the state save) on the process stopping - by itself, by user, by task manager, etc. Is it possible? try {} finally {}, AppDomain.ProcessExit, IDisposable, ...
15
votes
4answers
803 views

What is your or your company's programming process?

I'm looking for process suggestions, and I've seen a few around the site. What I'd love to hear is what you specifically use at your company, or just you and your hobby projects. Any links to other ...
15
votes
6answers
309 views

Balancing HTML/CSS Between Designers and Engineers

I have a development process question. Background: I work for a modest sized website where, historically, the designers created mockups/screenshots of what they wanted pages and components to look ...
15
votes
3answers
35k views

How do I show running processes in Oracle DB?

Is it possible to show other processes in progress on an Oracle database? Something like Sybases sp_who
14
votes
5answers
618 views

What's the memory before 0x08048000 used for in 32 bit machine?

In Linux, I learned that every process stores data starting at 0x08048000 in 32 bit machine (and 0x00400000 in 64 bit machine). But I don't know the reason why starting from there. What's the memory ...
14
votes
5answers
579 views

Only one python program running (like Firefox)?

When I open Firefox, then run the command: firefox http://somewebsite the url opens in a new tab of Firefox (same thing happens with Chromium as well). Is there some way to replicate this behavior ...
14
votes
4answers
6k views

How do I run another script in Python without waiting for it to finish?

I am creating a little dashboard for a user that will allow him to run specific jobs. I am using Django so I want him to be able to click a link to start the job and then return the page back to him ...
14
votes
9answers
1k views

Scrum: too much or not enough?

My company has recently started using Scrum; we've done 2 sprints. We're still learning, but we've definitely exposed and fixed some problems in our development process already. So in general I think ...
14
votes
1answer
2k views

List AppDomains in Process

Is there any possibility how to enumerate AppDomains within Process?
13
votes
4answers
7k views

Node.js as a background service

I want my node.js server to run in the background, ie: when I close my terminal I want my server to keep running. I've googled this and came up with this tut, however it doesn't work as intended. So ...
13
votes
12answers
628 views

How do you write quality code under duress? [closed]

Possible Duplicate: How do you manage to write high quality code very quickly? When emergency code fixes are required ASAP, how do you ensure that the code you're writing is better than the ...
13
votes
3answers
2k views

How to add a timeout to a function in Python

Many attempts have been made in the past to add timeout functionality in Python such that when a specified time limit expired, waiting code could move on. Unfortunately, previous recipes either ...
13
votes
5answers
5k views

Where is Boost.Process?

I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too. Having recently discovered the wonderful world of the Boost c++ libraries for all your ...
13
votes
10answers
612 views

What is the best way to introduce TDD, DI, CI to a dev team [closed]

There are many new concepts to learn for a typical asp.net webform developer who is happy with their event driven, drag and drop world where the code behind is abstraction enough. What is the best ...
13
votes
13answers
1k views

How to stop Lean programming becoming Cowboy Coding?

My team has been progressively adopting more and more lightweight methodologies, moving from Scrum to Lean/Kanban where there is less and less formal process. At some point we will be back to Cowboy ...
13
votes
6answers
2k views

How to wait for exit of non-children processes

For child processes, the wait() and waitpid() functions can be used to suspends execution of the current process until a child has exited. But this function can not be used for non-child processes. ...
13
votes
9answers
12k views

How to add a timeout value when using Java's Runtime.exec()?

I have a method I am using to execute a command on the local host. I'd like to add a timeout parameter to the method so that if the command being called doesn't finish in a reasonable amount of time ...
13
votes
9answers
869 views

Web development for a Computer Scientist

I have BS in Computer Science, and thus have experience developing software that runs at the command line or with a basic GUI. However, I have no experience making real, functional, websites. It has ...
13
votes
17answers
1k views

What was the most productive improvement suggestion you ever made for your team

I suggested the testing and functional teams to use Freemind map for jotting the functional flows and test steps. There was some paranoia but our module took it up and the QA teams were surprised to ...
12
votes
3answers
101 views

cannot update record, get stuck

i have an issue with my current database with mysql. i have over 100 connection waiting on a select record. when i execute: show processlist; the select query is a big query and the others are ...
12
votes
5answers
370 views

Good resources for example process definitions of software development methodologies?

Is there any website specifically for sharing and accessing actual software development processes implemented in software organizations? There are lots of resources that give advices and ...
12
votes
7answers
8k views

Linux Process States

In Linux, what happens to the state of a process when it needs to read blocks from a disk? Is it blocked? If so, how is another process chosen to execute?
12
votes
12answers
816 views

How to train junior programmers in code review?

We're looking to start a code-review process for a group of ~30 coders who are all relatively junior programmers. What is your advice on how to train for code reviews? Are there code review pitfalls ...
12
votes
4answers
357 views

What is the preferred process for sellling a personal project/product?

I have begun work on a personal project that may end up having some real-world applicability. I am beginning to entertain the idea of selling licenses. I am sure some others here have done this ...
12
votes
15answers
2k views

How to prioritize bugs?

In my current company there isn't clear understanding between the test and development teams as to how severe a bug should be? There are arguments which go back and forth to reduce or to increase the ...
12
votes
7answers
8k views

Using Process.Start() to start a process as a different user from within a Windows Service

I'd like to periodically run an arbitrary .NET exe under a specified user account from a Windows Service. So far I've got my windows service running with logic to decide what the target process is, ...
12
votes
1answer
1k views

What is the scope of finalizer thread - per application domain or per process?

Based on all my reading there should be one GC thread to invoke all finalizers. Now, the question is what is the scope of this "one" thread - per process or per application domain, as the whole ...
12
votes
3answers
3k views

Good Java Process Control Library

Java process control is notoriously bad - primarily due to inadequate support by the Java VM/JDK classes (e.g. java.lang.Process). I am wondering, are there any good open source libraries out there ...

1 2 3 4 5 63