]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
s/SIGCHILD/SIGCHLD/ in docs.
authorBen Darnell <ben@bendarnell.com>
Sun, 24 Aug 2014 15:45:41 +0000 (11:45 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 24 Aug 2014 15:45:41 +0000 (11:45 -0400)
tornado/ioloop.py
tornado/process.py

index a8f662acb2e39aee836e88485a1fe5e5431874d2..38cb20e1dc7594809f38975e99ecdac548f93db1 100644 (file)
@@ -724,7 +724,7 @@ class PollIOLoop(IOLoop):
         #
         # If someone has already set a wakeup fd, we don't want to
         # disturb it.  This is an issue for twisted, which does its
-        # SIGCHILD processing in response to its own wakeup fd being
+        # SIGCHLD processing in response to its own wakeup fd being
         # written to.  As long as the wakeup fd is registered on the IOLoop,
         # the loop will still wake up and everything should work.
         old_wakeup_fd = None
index 0f38b856d94515a94a4551cd4cfb6cac0c222b5d..a74f4acecee15a4bbdc1a004275ba82c9ce46660 100644 (file)
@@ -240,7 +240,7 @@ class Subprocess(object):
 
         The callback takes one argument, the return code of the process.
 
-        This method uses a ``SIGCHILD`` handler, which is a global setting
+        This method uses a ``SIGCHLD`` handler, which is a global setting
         and may conflict if you have other libraries trying to handle the
         same signal.  If you are using more than one ``IOLoop`` it may
         be necessary to call `Subprocess.initialize` first to designate
@@ -257,7 +257,7 @@ class Subprocess(object):
 
     @classmethod
     def initialize(cls, io_loop=None):
-        """Initializes the ``SIGCHILD`` handler.
+        """Initializes the ``SIGCHLD`` handler.
 
         The signal handler is run on an `.IOLoop` to avoid locking issues.
         Note that the `.IOLoop` used for signal handling need not be the
@@ -275,7 +275,7 @@ class Subprocess(object):
 
     @classmethod
     def uninitialize(cls):
-        """Removes the ``SIGCHILD`` handler."""
+        """Removes the ``SIGCHLD`` handler."""
         if not cls._initialized:
             return
         signal.signal(signal.SIGCHLD, cls._old_sigchld)