Jan 7, 2011 #1 bhavanasi Programmer Joined Jan 6, 2011 Messages 11 Location IN i need a process to run in background .which can run continuesly(infinite) in background.. when i try it with threads iteratively it giving segmentation problemmm please help me
i need a process to run in background .which can run continuesly(infinite) in background.. when i try it with threads iteratively it giving segmentation problemmm please help me
Jan 7, 2011 #2 IPGuru Vendor Joined Jun 24, 2003 Messages 8,391 Location GB googling python daemon gives lots of usefull results personaly I like this one Code: [URL unfurl="true"]http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/[/URL] but you may fine one of the other examples more more to your liking. I do not Have A.D.D. im just easily, Hey look a Squirrel! Upvote 0 Downvote
googling python daemon gives lots of usefull results personaly I like this one Code: [URL unfurl="true"]http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/[/URL] but you may fine one of the other examples more more to your liking. I do not Have A.D.D. im just easily, Hey look a Squirrel!
Jan 17, 2011 #3 mhmallory Technical User Joined Jan 23, 2003 Messages 11 Location US Here are a couple more examples that you might consider https://linuxdevmag.wordpress.com/tag/python/ http://code.activestate.com/recipes/278731-creating-a-daemon-the-python-way/history/6/ Upvote 0 Downvote
Here are a couple more examples that you might consider https://linuxdevmag.wordpress.com/tag/python/ http://code.activestate.com/recipes/278731-creating-a-daemon-the-python-way/history/6/