top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Ubuntu: Is a killed process's state remembered?

+1 vote
189 views

I killed a hanged "CodeBlocks IDE" process from Terminal. Now starting it again initiates a new process as shown in the output of top -- but no window shows up. What actually is messed up?

posted Nov 11, 2013 by Sonu Jindal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

It depends to some extent on what the CodeBlocks IDE was doing when it shut down - often this sort of thing is a result of it finding locks on resources that it doesn't expect, sometimes it's simply that a child process hasn't yet died and you need to either find it or wait for the system to finish cleaning up after stopping CodeBlocks' main process.

answer Nov 11, 2013 by Sumit Pokharna
Similar Questions
+3 votes

Can a disk with free space be partitioned inside the OS even if the disk is in RAID or does this need to be partitioned during install process?

0 votes

I am wondering how - or more exactly where - umask is defined on a stock Ubuntu server system.

I have reactivated the root account. Here's the respective default umask for root and normal users:

Nomal User:

$ umask
0002

Root User

$ umask
0022

On RHEL/CentOS, these values are defined in /etc/bashrc and then in the individual ~/.bashrc files. How does Ubuntu handle this?

0 votes

I found a reference on the web about a tablet that comes with Ubuntu installed. But couldn't find any further information.

Does this unit exist? If so, how well does it do at reading all the various epub formats?

I'm shopping for either a dedicated eReader or a tablet to use as an eReader. I've no plans to replace my desktops with a tablet. This is just for collecting various old books in one place for easy reading.

I like the physical size of the iPad Mini, but the price is a bit high for my use, I think. iPad sized units are physically larger than I would like.

0 votes

Anyone know of a tool to create SVG files (or similar) using some kind of macro or command line?
For instance, if I want to draw several lines start starts at the same point, have the same length but different angles (this example is written in some kind of Basic looking pseudo code):

x=150
y=100
length=100
drawline x,y,length,0
drawline x,y,length,1.4
drawline x,y,length,2,8
drawline x,y,length,4.2
drawline x,y,length,5.6
drawline x,y,length,7.0

Or maybe even better; something like this:

x=150
y=100
length=100
For Angle=0 To 180 Step 1.4
 drawline x,y,length,angle
Next Angle

Another acceptable approach would be:

xStart=150
yStart=100
Length=100
For Angle=0 To 180 Step 1.4
xEnd=xStart+Length*sin(Angle*π/180)
yEnd=xStart+Length*cos(Angle*π/180)
  drawline xStart,yStart,xEnd,yEnd
Next Angle

I have had a quick look at Inkscape but I couldnt find any kind of command line or macro programming IDE there.

...