aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/daemonize.py
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-20 08:23:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-24 10:00:55 +0100
commit587b144ee409d444494d8d7f2d1c53ede8f7c953 (patch)
tree611ecb4b57b8acb0fbcfc97b4de3fc35dbdcc8fb /lib/bb/daemonize.py
parent984ad90b2f1e29634dc79803a4a0404ab0534039 (diff)
downloadbitbake-587b144ee409d444494d8d7f2d1c53ede8f7c953.tar.gz
lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/daemonize.py')
-rw-r--r--lib/bb/daemonize.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/bb/daemonize.py b/lib/bb/daemonize.py
index 898820b06..346a61858 100644
--- a/lib/bb/daemonize.py
+++ b/lib/bb/daemonize.py
@@ -12,8 +12,11 @@ A failed call to fork() now raises an exception.
References:
1) Advanced Programming in the Unix Environment: W. Richard Stevens
- 2) Unix Programming Frequently Asked Questions:
- http://www.erlenstar.demon.co.uk/unix/faq_toc.html
+ http://www.apuebook.com/apue3e.html
+ 2) The Linux Programming Interface: Michael Kerrisk
+ http://man7.org/tlpi/index.html
+ 3) Unix Programming Frequently Asked Questions:
+ http://www.faqs.org/faqs/unix-faq/programmer/faq/
Modified to allow a function to be daemonized and return for
bitbake use by Richard Purdie
@@ -146,7 +149,7 @@ def createDaemon(function, logfile):
# OR
#
# Use the getrlimit method to retrieve the maximum file descriptor number
- # that can be opened by this process. If there is not limit on the
+ # that can be opened by this process. If there is no limit on the
# resource, use the default value.
#
import resource # Resource usage information.