Method and apparatus for managing thread execution in a multithread application

Information

  • Patent Application
  • 20040139432
  • Publication Number
    20040139432
  • Date Filed
    December 31, 2002
    21 years ago
  • Date Published
    July 15, 2004
    20 years ago
Abstract
A method for managing the suspension and resumption of threads on an individual basis in an information handling system having an operating system (OS) kernel and a user process having multiple threads of execution. An originating thread issues a pthread_kill( ) service request to the OS kernel to send a specified signal (thread-stop or thread-continue) to a specified target thread within the same process to suspend or resume execution of the target thread. More particularly, in response to a request from a thread to suspend the execution of the target thread, the OS kernel sends a thread-stop signal (SIGTHSTOP) to the target thread, transferring control within the target thread from a normally executing program portion to a signal interrupt routine. Upon gaining control, the signal interrupt routine issues a service request to the kernel to stop the target thread. In response to a request from a thread to resume execution of the target thread, the OS kernel sends a thread-continue signal (SIGTHCONT) to the target thread to post the waiting target thread and return control to the signal interrupt routine. Upon regaining control, the signal interrupt routine returns control to the program at the point of interrupt.
Description


BACKGROUND OF THE INVENTION

[0001] 1. Field of the Invention


[0002] This invention relates to a method and apparatus for managing thread execution in a multithreaded application. More particularly, it relates to a method and apparatus for controlling the suspension and resumption of individual threads using standard POSIX mechanisms.


[0003] 2. Description of the Related Art


[0004] Multithreaded applications are a well-known feature of modern computer systems, especially systems using UNIX-based operating systems. Multithreaded applications have multiple threads of execution, each of which may be performing an individual task relatively independently of other threads of the same application. For example, individual threads of a server process may be processing units of work received from different clients.


[0005] Signals are one of the means such processes and threads use to communicate with one another. At the process level, signals are a well-known means of interprocess communication (IPC), being described, for example, at pages 43-53 of W. R. Stevens, UNIX Network Programming (1990), incorporated herein by reference. As described in that reference, a signal is a notification to a process that an event has occurred. Signals may initiate such actions as terminating execution (e.g., SIGKILL, SIGTERM), suspending execution (SIGSTOP) or resuming execution of a suspended process (SIGCONT). To send a signal to another process, a process uses the services of the operating system kernel to generate a signal and direct it to the intended recipient. Thus, in the UNIX system defined by the UNIX System Services (USS) component of the IBM z/OS operating system, to send a signal to a process, a process may issue a kill( ) service request to the kernel specifying the target process and the signal to be sent. This is described in such references as the IBM publications z/OS UNIX System Services Programming: Assembler Callable Services Reference, SA22-7803-02 (March 2002), and z/OS C/C++ Run-Time Library Reference, SA22-7821-02 (March 2002), both incorporated herein by reference.


[0006] The action taken by the target process upon receiving the signal depends on the signal in question, as indicated above. In general, a process receiving a signal can do one of several things. It can “catch” the signal by passing control to a routine known as a signal handler to perform a specified function as determined by the target process. Alternatively, the target process can simply ignore the received signal, unless it is a signal such as SIGKILL or SIGSTOP that cannot be ignored. Finally, the target process can allow a default action to occur, such as process termination.


[0007] Signals may be sent not only between processes, but between different threads of a single process as well. Thus, in the UNIX System Services component of the IBM Z/OS operating system, to send a signal to a particular thread of a process, an originating thread of the same process may issue a pthread_kill( ) service request to the kernel specifying the target thread and the signal to be sent. Here too, the action taken by the target thread depends on the particular signal received.


[0008] With this background discussion of threads and signals, we turn to the problem addressed by the present invention. In conventional multithreaded UNIX applications, users are limited in how they can safely stop an individual thread. Current POSIX semantics allow for only an entire process (all threads) to be stopped via a SIGSTOP, SIGTTOU, SIGTTIN, or SIGTSTP signal. This is true even if the “stop” signal is directed at an individual thread via the pthread_kill( ) service. Likewise, the SIGCONT signal will continue all threads in a multithreaded stopped process. Neither of these existing POSIX signal mechanisms allows multithreaded applications to stop and start individual threads.


[0009] There are existing mechanisms for managing the execution of an individual task or thread. In UNIX systems, for example, there are services that allow threads to serialize with each other, condition variable and mutex services being probably the most widely used. However, these services require cooperative logic to be in place on the target thread.



SUMMARY OF THE INVENTION

[0010] In general, the present invention relates to a method and apparatus for managing the suspension and resumption of threads on an individual basis in an information handling system having an operating system (OS) kernel and a user process having multiple threads of execution. In accordance with the invention, the OS kernel, in response to receiving a request from one of the threads to alter the execution state of a specified target thread of the user process, sends a signal to the specified target thread of the user process to alter the execution state of the specified target thread without sending a signal to or altering the execution state of any unspecified thread of the user process.


[0011] The present invention gives multithreaded applications the ability to stop and start individual threads. To provide this new capability using POSIX signal mechanisms, in a preferred embodiment an originating thread issues a service request to the OS kernel to send a specified signal (thread-stop or thread-continue) to a specified target thread within the same process to suspend or resume execution of the target thread. Thus, in response to a request from a thread to suspend the execution of the target thread, the OS kernel sends a thread-stop signal to the target thread, transferring control within the target thread from a normally executing program portion to a signal interrupt routine (SIR). Upon gaining control, the signal interrupt routine issues a service request to the kernel to stop the target thread. Similarly, in response to a request from a thread to resume execution of the target thread, the OS kernel sends a thread-continue signal to the target thread to post the waiting target thread and return control to the signal interrupt routine. Upon regaining control, the signal interrupt routine returns control to the program at the point of interrupt.


[0012] In a preferred embodiment of the invention, two new signals—SIGTHSTOP (thread-stop) and SIGTHCONT (thread-continue)—are defined, and the pthread_kill( ) service is used to send either a SIGTHSTOP or SIGTHCONT signal to the target thread. (The names of the service and the signals are arbitrary, or course, and any other names could be used provided equivalent functions are performed.) These two new signals work generally like the SIGSTOP and SIGCONT signals described above, except that the scope of their action is confined to the target thread.


[0013] POSIX signal services are widely used and well understood by UNIX programmers. By providing a signal-based solution to the task of managing thread execution, much like processes are managed with SIGSTOP and SIGCONT, the present invention conforms well to UNIX-style programming. Using signals in this sense allows a “controlling” thread to manage one or more threads in the same process without additional target thread application logic. The target threads can be stopped and continued asynchronously just as POSIX processes are stopped and continued conventionally. Also, as with existing semantics for stopping and continuing a process, the stopping and continuing of a thread does not disrupt the functioning of the target thread. And in contrast to the condition variable and mutex services mentioned above, the present invention does not require cooperative logic to be in place on the target thread.







BRIEF DESCRIPTION OF THE DRAWINGS

[0014]
FIG. 1 is a schematic block diagram of the software components of a computer system incorporating the present invention.







DESCRIPTION OF THE PREFERRED EMBODIMENT

[0015]
FIG. 1 is a schematic block diagram of the software components of a computer system 10 incorporating the present invention. The hardware on which the software components run is conventional and is therefore not shown. Executing on system 10 are an operating system (OS) kernel 12 and a user process 14 containing at least a first thread 16 (thread 1) and a second thread 18 (thread 2). OS kernel 12 may be a UNIX kernel such as the UNIX System Services component of the IBM z/OS operating system, executing on an IBM eServer zSeries server (not shown). The present invention, however, is not limited to systems with UNIX kernels. As discussed in the background portion above, OS kernel 12 performs such system services as the kill( ) service for sending a specified signal to a specified target process and the pthread_kill( ) service for sending a specified signal to a specified target thread.


[0016] In accordance with the present invention, two new thread-scoped signals, SIGTHSTOP and SIGTHCONT, are provided. As a preliminary the discussing how these signals are implemented, their syntax and semantics will be briefly described.


[0017] For the thread-stop signal the syntax is:


[0018] pthread_kill(thread_id, sigthstop)


[0019] where thread_id is a unique identifier of the target thread (within the process) and sigthstop is a value uniquely associated with the SIGTHSTOP signal. Similarly, for the thread-stop signal the syntax is:


[0020] pthread_kill(thread_id, sigthcont)


[0021] where thread_id is the unique identifier of the target thread and sigthcont is a value uniquely associated with the SIGTHCONT signal.


[0022] The signals SIGTHSTOP and SIGTHCONT are sent using the pthread_kill( ) service and have an effective scope of a single thread rather than a whole process. Thus, the service request pthread_kill(thread_id, sigthstop) will cause the thread specified by thread_id to be stopped, while the service request pthread_kill(thread_id, sigthcont) will cause the specified thread to be resumed.


[0023] The implementation of the signals of the present invention will now be described. In the example that follows, it will be assumed that thread 18 is the originating thread and thread 16 is the target thread, although in general any thread of a user process 14 may target any other thread of the same user process in the manner described herein. Target thread 16 contains a normally executing program portion 20, as well as a signal interrupt routine (SIR) 22 and signal interrupt logic 24. The normally executing program portion 20 is simply the program portion executing at the time of interruption, and the function it may be performing is irrelevant to the present invention. Signal interrupt routine 22 obtains control of execution of the thread 18 upon the delivery of a signal from the OS kernel 12 to the thread 18, as described more particularly below. Signal interrupt logic 24 contains logic (i.e., programming code) for transferring control from the normally executing program portion 20 to the signal interrupt routine 22 in response to a signal received from the OS kernel 12. Signal interrupt routine 22 and signal interrupt logic 24 handle all signals directed to the thread 18; however, only the portions that are relevant to the SIGTHSTOP and SIGTHCONT signals of the present invention are described herein.


[0024] In brief, when a thread-stop signal SIGTHSTOP is issued against thread 16, the kernel 12 passes the signal to the signal interrupt routine 22, which issues an internal kernel service call to the kernel 12 to stop the thread 16 at an appropriate time. When a thread-continue signal SIGTHCONT is later issued against the thread 16, the kernel 12 posts the waiting thread 16 to return control to the signal interrupt routine 22, which returns control to the program 20 at the point of interrupt.


[0025] More particularly, to suspend the execution of the target thread 16, the originating thread 18 issues a pthread_kill( ) service request 26 to the kernel 12. As shown in the FIGURE, the service request 26 identifies both the target thread 16 (thread 1) and the signal (SIGTHSTOP) being sent to the target thread 16. Interrupt generation logic 28 of the kernel 12 fields the request 26 and sends an external interrupt 30 to the signal interrupt logic 24 of thread 16.


[0026] Signal interrupt logic 24 halts the normally executing program 20 on thread 16 and calls at 32 a kernel delivery routine 34. Delivery routine 34 modifies the program context of thread 16—i.e., the program status word (PSW) and associated registers in the zSeries machine referenced above—to run signal interrupt routine 22. Interrupt logic 24 then exits and the kernel dispatcher (not separately shown) returns control to the user task with the signal interrupt routine 22 in control.


[0027] Signal interrupt routine 22 records interrupt data and determines whether the application is in a critical code section that must complete. If not, the signal interrupt routine 22 issues a “stop me” pthread_quiesce call 36 to a kernel wait service 38 (KernWait) to wait the thread 16. If the application is in a critical code section of logic, then the signal interrupt routine 22 defers the calling of the kernel wait service 38 until it is safe to do so. In either event, when it is called wait service 38 places thread 16 in a stopped state.


[0028] At some future point, thread 18 issues a second pthread_kill( ) service request 40 to the kernel 12 to continue the stopped thread 16. As shown in the FIGURE, this second service request 40 identifies both the target thread 16 (thread 1) and the signal (SIGTHCONT) being sent to the target thread 16. Post generation logic 42 of the kernel 12 responds to this request to post thread 16, which is still waiting in the kernel 12. This is done at 44 by notifying the KernWait service 38, which returns control at 46 to the signal interrupt routine 22. Signal interrupt routine 22 in turn returns at 48 to the user program 20 at the point of the original interrupt. Thread 16 is unaware that it was stopped.


[0029] From the above discussion, it will be seen that interrupt generation logic 28 and kernel delivery routine 34 function as thread-stop logic for sending a SIGTHSTOP signal to the target thread to suspend the thread, while post generation logic 42 functions as thread-continue logic for sending a SIGTHCONT signal to the target thread to resume the thread.


[0030] In the embodiment shown, SIGTHSTOP and SIGTHCONT are processed in a manner that is compatible with existing POSIX standards, so that threads that are blocking on other functions may subsequently be stopped and continued using SIGTHSTOP and SIGTHCONT without any adverse effects on the target thread. That is to say, if the target thread were in a sleep( ) and were stopped then continued, the sleep( ) service would not be prematurely woken up. The details of this may be found in S. Bender et al., “Dual Level Wait”, IBM Technical Disclosure Bulletin, vol. 36, no. 11, November 1993, pages 483-485, incorporated herein by reference.


[0031] In the embodiment shown, the SIGTHSTOP and SIGTHCONT signals are non-catchable, non-blockable, and cannot be ignored; the target thread must suspend or resume execution, depending on the signal. Also, like other signals, they are not cumulative or stackable. Multiple SIGTHSTOP signals to the same target thread are tolerated with no incremental effect, but a single SIGTHCONT sent to the same thread will reactivate it, even if it has been the earlier target of several SIGTHSTOP signals. Since SIGTHSTOP signals are not queued, subsequent signals are ignored by the kernel.


[0032] In the embodiment shown, the pthread_kill(thread_id, sigthcont) command is issued against another thread of the same process. Since SIGTHSTOP only stops a single thread in the process, any other running thread in the process can issue the SIGTHCONT to resume the stopped thread. One should avoid having all the threads in the process stopped using SIGTHSTOP, for then the process is virtually hung. No thread from another process can send a signal to wake them up. The only thing that can be done is to manually kill the threads.


[0033] While a particular embodiment has been shown and described, various modifications will be apparent to those skilled in the art. Thus, while the invention has been described in the context of a UNIX-based operating system, it is not limited to such operating systems. Also, as noted above, the signals and service requests used may have different names, so long as similar functions are performed. Further, while the pthread_kill( ) service described operates on only a single target thread, it could be modified to operate on a plurality of such threads as specified, for example, in a list. In such a case, signals would be sent only to the specified threads and not to any unspecified thread of the user process.


Claims
  • 1. In an information handling system having an operating system kernel and a user process having multiple threads of execution, a method for managing the execution of said threads, said method being performed by said kernel and comprising the steps of: receiving a request from one of said threads to alter the execution state of a specified target thread of said user process; and in response to receiving said request, sending a signal to said specified target thread of said user process to alter the execution state of said specified target thread without altering the execution state of any unspecified thread of said user process.
  • 2. The method of claim 1 in which said request from said one of said threads is a request to suspend the execution of said specified target thread.
  • 3. The method of claim 1 in which said request from said one of said threads is a request to resume the execution of said specified target thread.
  • 4. The method of claim 1 in which said request specifies a target thread and a type of signal to be sent to the target thread.
  • 5. The method of claim 1 in which said request specifies a desired alteration of the execution state of said specified target thread.
  • 6. The method of claim 1 in which said one of said threads makes said request by issuing a command to said kernel to send a specified signal to said specified target thread, said kernel, upon receiving said command, sending said specified signal to said specified target thread without sending said specified signal to any unspecified thread of said user process.
  • 7. The method of claim 1 in which said kernel, upon receiving a request from one of said threads to suspend execution of said specified target thread, transfers control of execution of said specified target thread from a normally executing program portion to an interrupt routine.
  • 8. The method of claim 7 in which said interrupt routine, upon gaining control of execution, issues a service request to the kernel to suspend execution of the interrupt routine.
  • 9. The method of claim 8 in which said kernel, upon receiving a request from one of said threads to resume execution of said specified target thread, resumes execution of said interrupt routine.
  • 10. The method of claim 9 in which said interrupt routine, upon resuming execution, returns control of execution to said normally executing program portion.
  • 11. In an information handling system having an operating system kernel and a user process having multiple threads of execution, apparatus for managing the execution of said threads, said apparatus being associated with said kernel and comprising: thread-stop logic responsive to receiving a request from one of said threads to suspend execution of a specified target thread of said user process for sending a thread-stop signal to said specified target thread of said user process to suspend said specified target thread without suspending any unspecified thread of said user process; and thread-continue logic responsive to receiving a request from one of said threads to resume execution of a specified target thread of said user process for sending a thread-continue signal to said specified target thread of said user process to resume said specified target thread without resuming any unspecified thread of said user process.
  • 12. The apparatus of claim 11 in which one of said threads makes a request by issuing a command to said kernel to send a specified signal to a specified target thread, said kernel, upon receiving said command, sending said specified signal to said specified target thread without sending said specified signal to any unspecified thread of said user process.
  • 13. The apparatus of claim 11 in which said thread-stop logic, upon receiving a request to suspend execution of a specified target thread, transfers control of execution of said specified target thread from a normally executing program portion to an interrupt routine.
  • 14. The apparatus of claim 13 in which said interrupt routine, upon gaining control of execution, issues a service request to the kernel to suspend execution of the interrupt routine.
  • 15. The apparatus of claim 14 in which said thread-continue logic, upon receiving a request to resume execution of a specified target thread, resumes execution of said interrupt routine.
  • 16. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine to perform method steps for managing the execution of threads in an information handling system having an operating system kernel and a user process having multiple threads of execution, said method steps being performed by said kernel and comprising: receiving a request from one of said threads to alter the execution state of a specified target thread of said user process; and in response to receiving said request, sending a signal to said specified target thread of said user process to alter the execution state of said specified target thread without altering the execution state of any unspecified thread of said user process.
  • 17. The program storage device of claim 16 in which said one of said threads makes said request by issuing a command to said kernel to send a specified signal to said specified target thread, said kernel, upon receiving said command, sending said signal to said specified target thread without sending said specified signal to any unspecified thread of said user process.
  • 18. The program storage device of claim 16 in which said kernel, upon receiving a request from one of said threads to suspend execution of said specified target thread, transfers control of execution of said specified target thread from a normally executing program portion to an interrupt routine.
  • 19. The program storage device of claim 18 in which said interrupt routine, upon gaining control of execution, issues a service request to the kernel to suspend execution of the interrupt routine.
  • 20. The program storage device of claim 19 in which said kernel, upon receiving a request from one of said threads to resume execution of said specified target thread, resumes execution of said interrupt routine.