US20050246461A1 - Scheduling threads in a multi-processor computer - Google Patents

Scheduling threads in a multi-processor computer Download PDF

Info

Publication number
US20050246461A1
US20050246461A1 US10/834,498 US83449804A US2005246461A1 US 20050246461 A1 US20050246461 A1 US 20050246461A1 US 83449804 A US83449804 A US 83449804A US 2005246461 A1 US2005246461 A1 US 2005246461A1
Authority
US
United States
Prior art keywords
thread
processor
interrupts
current processor
affinity
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US10/834,498
Inventor
Jos Accapadi
Herman Dierks
Andrew Dunshea
Dirk Michel
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US10/834,498 priority Critical patent/US20050246461A1/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: ACCAPADI, JOS MANUEL, DIERKS, HERMAN DIETRICH JR., DUNSHEA, ANDREW, MICHEL, DIRK
Publication of US20050246461A1 publication Critical patent/US20050246461A1/en
Priority to US12/055,179 priority patent/US7831980B2/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4812Task transfer initiation or dispatching by interrupt, e.g. masked

Definitions

  • the field of the invention is data processing, or, more specifically, methods, systems, and products for scheduling threads in a multi-processor computer.
  • a thread is a unit of software execution on a multi-processing computer.
  • software programs are executed in units of execution called ‘processes’ that include all the processor registers, code segment and offset registers, data segment and offset registers, stack segment and offset registers, flag registers, instruction pointer registers, program counters, and so on, needed for execution of software programs.
  • ‘processes’ are often organized further as threads, where each thread of a process individually possesses all the attributes needed for execution except that a thread shares memory among all the threads of a process, thereby reducing the overhead of operating system switches from thread to thread (‘context switches’).
  • Each thread in a multi-processor computer typically is dispatched to run on a processor for a time slice, a predetermined maximum period of time for which the thread may retain possession of the processor.
  • a thread may leave the processor by issuing a system call, for example, to send or receive data to or from input/output functions, at which time the thread is dispatched to a wait queue to wait for a return interrupt representing a response from input/output functions.
  • the thread While a thread is running on a processor, the thread may be interrupted by interrupts representing input/output responses from other threads, threads that are waiting on the wait queue for input/output.
  • the interrupted thread never knows that it has been interrupted. If it is interrupted often, however, there is an effect on its overall performance despite the fact that the thread itself is never aware of its interruptions.
  • Prior art solutions included binding interrupt processing exclusively to a single processor or to a subset of the processors on a system and refraining from assigning threads to processors reserved for interrupt processing. Such an approach is relatively static, however, leaving interrupt processing on a subset of processors and thread processing on a subset of processors even when other processors would otherwise be available to spread occasional large loads of thread processing or interrupt processing.
  • Other prior art methods of administering varying load conditions among processors are based on load factors such as queue occupancy and measures of throughput, with little or no attention to dynamic management on the basis of interrupt frequency or interrupt count. There is an ongoing need therefore for improvement in scheduling threads in a multi-processor computer system.
  • Methods, systems, and computer program products are disclosed for scheduling threads in a multi-processor computer system that include establishing an interrupt threshold for a thread, where the interrupt threshold represents a maximum permissible number of interrupts during thread execution on a processor; executing the thread on a current processor, where the thread has thread affinity for one or more processors including the current processor; counting a number of interrupts during execution of the thread on the current processor; and removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
  • establishing an interrupt threshold includes storing a value of an interrupt threshold in memory associated with the thread.
  • counting a number of interrupts includes incrementing by an interrupt handler a value stored in memory associated with the thread.
  • removing thread affinity for the current processor includes removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor.
  • removing thread affinity for the current processor includes placing the thread in a run queue of another processor.
  • the thread affinity includes only the current processor, and the embodiment includes setting thread affinity to include at least one other processor.
  • Embodiments typically also include establishing a maximum count duration for the thread; measuring elapsed count time for the thread during execution of the thread on the current processor; resetting the counted number of interrupts to zero in dependence upon the measured elapsed count time and the maximum count duration; and resetting the measured elapsed count time to zero in dependence upon the measured elapsed count time and the maximum count duration.
  • removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold includes resetting the counted number of interrupts to zero and resetting the measured elapsed count time to zero.
  • FIG. 1 sets forth a block diagram of an exemplary computer system operable according to various embodiments of the present invention for scheduling threads in a multi-processor computer system.
  • FIG. 2 sets forth a block diagram of an exemplary operating system operable according to one or more embodiments of the present invention.
  • FIG. 3 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system.
  • FIG. 4 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time.
  • FIG. 5 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time in removing thread affinity according to a counted number of interrupts and an interrupt threshold.
  • Suitable programming means include any means for directing a computer system to execute the steps of the method of the invention, including for example, systems comprised of processing units and arithmetic-logic circuits coupled to computer memory, which systems have the capability of storing in computer memory, which computer memory includes electronic circuits configured to store data and program instructions, programmed steps of the method of the invention for execution by a processing unit.
  • the invention also may be embodied in a computer program product, such as a diskette or other recording medium, for use with any suitable data processing system.
  • Embodiments of a computer program product may be implemented by use of any recording medium for machine-readable information, including magnetic media, optical media, or other suitable media.
  • any computer system having suitable programming means will be capable of executing the steps of the method of the invention as embodied in a program product.
  • Persons skilled in the art will recognize immediately that, although most of the exemplary embodiments described in this specification are oriented to software installed and executing on computer hardware, nevertheless, alternative embodiments implemented as firmware or as hardware are well within the scope of the present invention.
  • FIG. 1 sets forth a block diagram of an exemplary computer system ( 134 ) operable according to various embodiments of the present invention for scheduling threads in a multi-processor computer system by establishing for a thread having thread affinity for one or more processors an interrupt threshold representing a maximum permissible number of interrupts during thread execution on a processor, executing the thread on a current processor, counting interrupts during execution of the thread on the current processor, and removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
  • the computer ( 134 ) of FIG. 1 shows three computer processors ( 156 ).
  • the number three is not a limitation of the invention, however, as computer systems according to embodiments of the present invention may include any number of processors.
  • the type of processor also is not a limitation of the present invention.
  • Some processors may support execution of only one thread at a time.
  • Other processors may support hardware multi-threading or ‘simultaneous multi-threading’ (‘SMT’), hardware support for multiple independent threads on a processor at the same time, multiple registers sets for threads instead of just one, allowing multiple threads to issue multiple instructions during each cycle of a processor's execution. Threads running on SMT processors experience interrupts just as do threads on single-threaded processors, and methods according to the present invention are equally useful on both.
  • SMT hardware multi-threading or ‘simultaneous multi-threading’
  • the computer of FIG. 1 also includes random access memory ( 168 ) (“RAM”).
  • RAM random access memory
  • Application programs useful in systems according to the present invention includes, word processors, spreadsheets, database management systems, email clients, web servers, and any other application as will occur to those of skill in the art.
  • Application programs according to embodiments of the present invention may be programmed to establish interrupt thresholds for threads and to establish maximum count durations for threads as, for example, a parameter in a createThread( ) call, or as a configuration parameter for all or part of a computer system, or as an API call which may be issued at any time from the application or from a thread in the application as, for example, setInterruptThreshold(Integer myInterruptThreshold).
  • RAM ( 168 ) Also stored in RAM ( 168 ) is an operating system ( 154 ), which in turn includes a dispatcher ( 102 ) and an interrupt handler ( 118 ).
  • Operating systems useful in computers according to embodiments of the present invention include UnixTM, LinuxTM, Microsoft NTTM, and many others as will occur to those of skill in the art.
  • Interrupt handler ( 118 ) is a software function in the operating system programmed according to embodiments of the present invention, in addition to its usual duties, also to count interrupts occurring during execution of a thread on a processor.
  • Dispatcher ( 102 ) is a software function in the operating system programmed according to embodiments of the present invention, in addition to its usual duties of administering the status of threads in the system, also to remove thread affinity for a current processor to which a thread is current assigned (‘a current processor’) in dependence upon the counted number of interrupts and the interrupt threshold—if, for example, the counted number of interrupts exceeds the interrupt threshold.
  • the computer of FIG. 1 includes non-volatile computer memory ( 166 ) coupled through a system bus ( 160 ) to processors ( 156 ) and to other components of the computer.
  • Non-volatile memory ( 166 ) may be implemented as a hard disk drive ( 170 ), optical disk drive ( 172 ), electrically erasable programmable read-only memory space (so-called ‘EEPROM’ or ‘Flash’ memory) ( 174 ), RAM drives (not shown), or as any other kind of non-volatile computer memory as will occur to those of skill in the art.
  • the example computer ( 134 ) of FIG. 1 includes a communications adapter ( 167 ) implementing connections for data communications with other computers, clients, servers, or networks.
  • Communications adapters implement the hardware level of connections for data communications between computers directly with one another and through networks. Examples of communications adapters include modems for wired dial-up connections, Ethernet (IEEE 802.3) adapters for wired LAN connections, and 802.11b adapters for wireless LAN connections.
  • the example computer of FIG. 1 includes one or more input/output interface adapters ( 178 ).
  • Input/output interface adapters in computers implement user-oriented input/output through, for example, software drivers and computer hardware for controlling output to display devices ( 180 ) such as computer display screens, as well as user input from user input devices ( 181 ), such as keyboards and mice.
  • FIG. 2 sets forth a block diagram of an exemplary operating system operable according to one or more embodiments of the present invention.
  • thread ( 204 ) has been granted ( 108 ) the processor ( 156 ). That is, thread ( 204 ) has been ‘dispatched’ to processor ( 156 ) and is currently running on processor ( 156 ).
  • Thread ( 204 ) is authorized to occupy the processor for no more than a maximum amount of time referred to as a ‘time slice,’ after which the thread is said to be ‘preempted’ for return to the run queue until other threads with the same priority rating have a chance to run on the processor.
  • Threads are placed in the run queue ( 104 ) when they are first created and from the wait queue ( 106 ) upon returns from system calls ( 114 ). Threads also are placed on the run queue ( 104 ) when they are preempted ( 110 ) while running on a processor; that is, when a higher priority thread arrives in the run queue ( 104 ) or when a thread's time slice expires.
  • the system of FIG. 2 includes also a wait queue ( 106 ) that includes the threads of the systems that are in the ‘wait’ state, waiting for input/output returns from peripheral devices such as user input devices ( 181 ), display devices ( 180 ), communications adapters ( 167 ), memory ( 166 ), and others as will occur to those of skill in the art. Threads running on a processor are moved to the wait queue ( 106 ) and to the ‘wait’ state when they issue system calls ( 112 ). Such system calls are often requests for data input from or output to peripheral devices ( 181 , 180 , 167 , 166 ).
  • a thread ( 204 ) running on a processor ( 156 ) may be interrupted ( 116 ).
  • An interrupt is a mechanism by which a computer subsystem or module external to a processor may interrupt the otherwise normal flow of operations on the processor.
  • interrupts are provided so that a thread sending or receiving data to or from a peripheral device need not block and wait. Instead, the thread issues a system call ( 112 ) and suspends operation while waiting on the wait queue ( 106 ) for its data.
  • the peripheral device triggers an interrupt ( 116 ) by signaling the processor ( 156 ), usually by way of a system bus ( 160 ).
  • the processor ‘catches’ the interrupt, saves the thread's operating context, and then hands control over to an interrupt handler ( 118 ) that ‘clears’ the interrupt by processing it.
  • the thread's saved operating context is at least all information needed to resume thread processing at the point at which it was interrupted, that is, at least the processor status registers and the location of the next instruction to be executed in the interrupted thread, in addition to whatever other information is needed by the particular operating system.
  • the thread's operating context ( 205 ) in the example of FIG. 2 is saved on fast local memory directly available to the interrupt handler ( 118 ) and the dispatcher modules ( 102 ) with no need to access main memory.
  • Such fast local memory directly available to the interrupt handler and the dispatcher modules may be implemented as, for example, a system control stack, kernel stack, or a scratch pad memory.
  • the thread context ( 205 ) saved according to embodiments of the present invention includes an interrupt threshold ( 206 ) for the thread, the number of interrupts ( 212 ) experienced by the thread ( 204 ) so far in its operations on the processor ( 156 ), a maximum count duration ( 234 ), and an elapsed count time ( 236 ).
  • the maximum count duration ( 234 ) and the elapsed count time ( 236 ) in this example work together to prevent the interrupt count from extending without limit.
  • the maximum count duration ( 234 ) is the maximum period for maintaining a count of interrupts.
  • the elapsed count time ( 236 ) is the period through which interrupts have presently been counted. In this example, when the elapsed time count ( 236 ) exceeds the maximum count duration ( 234 ), the elapsed count time ( 236 ) and the interrupt count ( 212 ) are reset to zero.
  • a thread's maximum count duration ( 234 ) may be less than, equal to, or greater than the thread's time slice.
  • a thread may be assigned a time slice of, for example, 20 milliseconds while its maximum count duration is set to 100 milliseconds.
  • interrupts of the thread are counted across at least five of the thread's time slices, and interrupts of the thread may be counted across more than five of the thread's time slices because the thread may not always time out on its time slice.
  • the thread may be preempted by a higher-priority thread or may issue system calls, thereby losing a portion of a particular time slice.
  • the example thread having a time slice of 20 milliseconds and a maximum count duration of 100 milliseconds therefore may run on the processor more than five times before its elapsed count time becomes equal to or greater than its maximum count duration.
  • FIG. 3 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes establishing ( 202 ) an interrupt threshold ( 206 ) for a thread ( 204 ).
  • the interrupt threshold represents a maximum number of interrupts permitted during thread execution on a processor.
  • the interrupt threshold may be established by use of a parameter in a system call that creates a thread, as in, for example, createThread( . . . , Integer MaxInterrupts).
  • an interrupt threshold may be set as a configuration parameter applicable to all threads in an operating system.
  • an interrupt threshold may be set through a system call that may be issued at any time from an application or even from the thread itself as in, for example, setInterruptThreshold(Integer ThreadID, Integer MaxInterrupts).
  • establishing ( 202 ) an interrupt threshold may be carried out by storing a value of an interrupt threshold in memory associated with the thread.
  • An interrupt threshold may be stored in a thread context ( 205 on FIG. 2 ) in registers on a processor, in a system stack, a kernel stack, scratchpad memory for the thread, or in a higher-level construct in the operating system such as a thread control block or a thread table.
  • the method of FIG. 3 includes executing ( 208 ) the thread on a current processor, the thread having thread affinity for one or more processors including the current processor. Executing the thread on a current processor is carried out typically by a dispatcher's granting the processor to the thread for thread execution. That is, the thread is dispatched from a run queue to the processor according to the thread's priority. The thread is dispatched to run on the processor for a length of time not exceeding a ‘time slice.’ Thread ( 204 ) in the example of FIG. 3 is shown with thread affinity for three processors, processor 1 ( 214 ), processor 3 ( 216 ), and processor 5 ( 218 ), where processor 3 ( 216 ) is taken as the current processor. That is, thread ( 204 ) is authorized to run on processor 1 , processor 3 , or processor 5 , and thread ( 204 ) is assigned to actually run on processor 3 .
  • the method of FIG. 3 includes counting ( 210 ) a number of interrupts during execution of the thread on the current processor.
  • counting ( 210 ) a number of interrupts may include incrementing by an interrupt handler a value stored in memory associated with the thread.
  • counting ( 210 ) the number of interrupts during execution of the thread on the current processor is typically carried out by an interrupt handler.
  • the interrupt handler is configured with an interrupted thread's context location, including the storage location of the thread's interrupt count, in fast local memory such as a system stack or scratchpad. At some point in processing between the time when the interrupt handler is first called and the time when the interrupt handler calls a ‘return from interrupt’ routine to return the processor to the interrupted thread, the interrupt handler increments the interrupt count for the thread.
  • the method of FIG. 3 also includes removing ( 220 ) thread affinity for the current processor in dependence upon the counted number of interrupts ( 212 ) and the interrupt threshold ( 206 ).
  • removing ( 220 ) thread affinity for the current processor is typically carried out by removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor—either because the thread used its entire time slice on the processor or by the arrival in the run queue of a another thread having higher priority.
  • a dispatcher during preemption processing compares ( 224 ) the number of interrupts ( 212 ) as counted for the thread and the interrupt threshold ( 206 ) to determine whether the number of interrupts exceeds the interrupt threshold. If the number of interrupts exceeds ( 228 ) the interrupt threshold, the dispatcher removes ( 220 ) thread affinity for the current processor. If the number of interrupts does not exceed ( 226 ) the interrupt threshold, the dispatcher continues ( 226 ) thread execution ( 208 ) on the current processor.
  • Removing ( 220 ) thread affinity for the current processor may be implemented, for example, by use of a system call such Windows NT's “setThreadAffinityMask( ).” Calls to setThreadAffinityMask( ) may have the following form, for example:
  • removing ( 220 ) thread affinity for the current processor may be carried out by placing the thread in a run queue of another processor.
  • threads are dispatched to multiple processors from a single common run queue.
  • each processor has its own run queue. Systems having separate run queues for each processor may or may not support thread affinity masks.
  • a dispatcher may remove ( 220 ) thread affinity for the current processor, whenever the thread is preempted, by placing the thread in a run queue of another processor.
  • thread affinity may include only the current processor ( 254 ), and in such an example, the method also advantageously includes setting thread affinity ( 250 ) to include at least one other processor.
  • This aspect of the method of FIG. 3 addresses examples in which a system supports thread affinity masking, but the present thread affinity mask for a process includes only one processor. If that processor is removed from the mask, another needs to be added for the thread to run. Such systems may enforce default assignments of thread affinity.
  • the method of FIG. 3 advantageously includes setting thread affinity in this circumstance to at least one processor other than the current one just removed from affinity. In the method of FIG.
  • FIG. 4 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time.
  • the method of FIG. 4 is an extension of the method of FIG. 3 . That is, the method of FIG. 4 includes establishing ( 202 ) an interrupt threshold, counting interrupts ( 210 ), and removing ( 220 ) thread affinity for the current processor in dependence upon the counted number of interrupts ( 212 ) and the interrupt threshold ( 206 ), all as described above for the method of FIG. 3 .
  • the method of FIG. 4 also includes establishing ( 230 ) a maximum count duration ( 234 ) for the thread ( 204 ).
  • a maximum count duration ( 234 ) for the thread ( 204 ) may be implemented, for example, as an integer stored in association with the thread context in a system stack, a scratchpad, a thread control block, a thread table, and so on, to represent the period of time during which interrupts are to be counted for a thread.
  • Establishing ( 230 ) a maximum count duration ( 234 ) for the thread ( 204 ) then may be implemented through a system call provided for that purpose such as, for example:
  • the method of FIG. 4 also includes measuring ( 232 ) elapsed count time ( 236 ) for the thread during execution of the thread on the current processor.
  • Operating systems typically include a function that runs periodically, for example, once per second, to age threads. Such a function may be modified according to embodiments of the present invention to increment elapsed count time also for a thread.
  • Maximum count duration may be less than, equal to, or greater than a thread's assigned time slice for actual possession of a processor. Elapsed count time therefore may persist across time slices, that is, across multiple run states for a thread, across multiple trips from the run queue to a processor and back, across multiple preemptions.
  • maximum count duration for a thread is set to a period that is less than the thread's assigned time slice, elapsed count time may always be less than the actual duration of a thread's possession of a processor.
  • the method of FIG. 4 also includes resetting ( 244 , 246 ) both the counted number of interrupts ( 212 ) and the measured elapsed count time ( 236 ) to zero in dependence upon the measured elapsed count time ( 236 ) and the maximum count duration ( 234 ). More particularly, both the counted number of interrupts ( 212 ) and the measured elapsed count time ( 236 ) are reset ( 244 , 246 ) to zero in the example of FIG. 4 when the elapsed count time ( 236 ) exceeds ( 240 ) the maximum count duration ( 234 ) for the thread ( 204 ). In the example of FIG.
  • an interrupt handler compares ( 238 ) the elapsed count time ( 236 ) and the maximum count duration ( 234 ) for the thread ( 204 ). If the elapsed count time ( 236 ) does not exceed ( 242 ) the maximum count duration ( 234 ) for the thread ( 204 ), interrupt counting ( 210 ) proceeds without resetting ( 244 , 246 ) the counted number of interrupts ( 212 ) and the measured elapsed count time ( 236 ).
  • interrupt counting ( 210 ) proceeds only after resetting ( 244 , 246 ) both the counted number of interrupts ( 212 ) and the measured elapsed count time ( 236 ) to zero.
  • FIG. 5 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time in removing thread affinity according to a counted number of interrupts and an interrupt threshold.
  • the method of FIG. 5 is an extension of the method of FIG. 3 . That is, the method of FIG. 5 includes establishing ( 202 ) an interrupt threshold, counting interrupts ( 210 ), and removing ( 220 ) thread affinity for the current processor in dependence upon the counted number of interrupts ( 212 ) and the interrupt threshold ( 206 ), all as described above for the method of FIG. 3 .
  • removing thread affinity ( 220 ) for the current processor in dependence upon the counted number of interrupts ( 212 ) and the interrupt threshold ( 206 ) advantageously includes resetting ( 244 ) the counted number of interrupts ( 212 ) to zero and resetting ( 246 ) the measured elapsed count time ( 236 ) to zero.

Abstract

Scheduling threads in a multi-processor computer system including establishing an interrupt threshold for a thread, where the interrupt threshold represents a maximum permissible number of interrupts during thread execution on a processor; executing the thread on a current processor, where the thread has thread affinity for one or more processors including the current processor; counting a number of interrupts during execution of the thread on the current processor; and removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.

Description

    BACKGROUND OF THE INVENTION
  • 1. Field of the Invention
  • The field of the invention is data processing, or, more specifically, methods, systems, and products for scheduling threads in a multi-processor computer.
  • 2. Description Of Related Art
  • A thread is a unit of software execution on a multi-processing computer. On such a computer, software programs are executed in units of execution called ‘processes’ that include all the processor registers, code segment and offset registers, data segment and offset registers, stack segment and offset registers, flag registers, instruction pointer registers, program counters, and so on, needed for execution of software programs. For efficiency, ‘processes’ are often organized further as threads, where each thread of a process individually possesses all the attributes needed for execution except that a thread shares memory among all the threads of a process, thereby reducing the overhead of operating system switches from thread to thread (‘context switches’).
  • Each thread in a multi-processor computer typically is dispatched to run on a processor for a time slice, a predetermined maximum period of time for which the thread may retain possession of the processor. A thread may leave the processor by issuing a system call, for example, to send or receive data to or from input/output functions, at which time the thread is dispatched to a wait queue to wait for a return interrupt representing a response from input/output functions. While a thread is running on a processor, the thread may be interrupted by interrupts representing input/output responses from other threads, threads that are waiting on the wait queue for input/output. The interrupted thread never knows that it has been interrupted. If it is interrupted often, however, there is an effect on its overall performance despite the fact that the thread itself is never aware of its interruptions.
  • Consider a thread with a time slice of 10 milliseconds that is interrupted 10 times during a single time slice of operation on a processor. Assume that each interrupt requires 5 milliseconds to process. In this example, the thread requires 60 milliseconds of objective time to conduct 10 milliseconds of actual processing. For a processor-bound thread, that is, for a thread that tends to need its entire time slice on the processor, this fact pattern is very inefficient for its overall efficiency of operation.
  • Prior art solutions included binding interrupt processing exclusively to a single processor or to a subset of the processors on a system and refraining from assigning threads to processors reserved for interrupt processing. Such an approach is relatively static, however, leaving interrupt processing on a subset of processors and thread processing on a subset of processors even when other processors would otherwise be available to spread occasional large loads of thread processing or interrupt processing. Other prior art methods of administering varying load conditions among processors are based on load factors such as queue occupancy and measures of throughput, with little or no attention to dynamic management on the basis of interrupt frequency or interrupt count. There is an ongoing need therefore for improvement in scheduling threads in a multi-processor computer system.
  • SUMMARY OF THE INVENTION
  • Methods, systems, and computer program products are disclosed for scheduling threads in a multi-processor computer system that include establishing an interrupt threshold for a thread, where the interrupt threshold represents a maximum permissible number of interrupts during thread execution on a processor; executing the thread on a current processor, where the thread has thread affinity for one or more processors including the current processor; counting a number of interrupts during execution of the thread on the current processor; and removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
  • In typical embodiments, establishing an interrupt threshold includes storing a value of an interrupt threshold in memory associated with the thread. In typical embodiments, counting a number of interrupts includes incrementing by an interrupt handler a value stored in memory associated with the thread. In typical embodiments, removing thread affinity for the current processor includes removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor. In some embodiments, removing thread affinity for the current processor includes placing the thread in a run queue of another processor. In some embodiments, the thread affinity includes only the current processor, and the embodiment includes setting thread affinity to include at least one other processor.
  • Embodiments typically also include establishing a maximum count duration for the thread; measuring elapsed count time for the thread during execution of the thread on the current processor; resetting the counted number of interrupts to zero in dependence upon the measured elapsed count time and the maximum count duration; and resetting the measured elapsed count time to zero in dependence upon the measured elapsed count time and the maximum count duration. In many embodiments, removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold includes resetting the counted number of interrupts to zero and resetting the measured elapsed count time to zero.
  • The foregoing and other objects, features and advantages of the invention will be apparent from the following more particular descriptions of exemplary embodiments of the invention as illustrated in the accompanying drawings wherein like reference numbers generally represent like parts of exemplary embodiments of the invention.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 sets forth a block diagram of an exemplary computer system operable according to various embodiments of the present invention for scheduling threads in a multi-processor computer system.
  • FIG. 2 sets forth a block diagram of an exemplary operating system operable according to one or more embodiments of the present invention.
  • FIG. 3 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system.
  • FIG. 4 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time.
  • FIG. 5 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time in removing thread affinity according to a counted number of interrupts and an interrupt threshold.
  • DETAILED DESCRIPTION OF EXEMPLARY EMBODIMENTS Introduction
  • The present invention is described to a large extent in this specification in terms of methods for scheduling threads in a multi-processor computer. Persons skilled in the art, however, will recognize that any computer system that includes suitable programming means for operating in accordance with the disclosed methods also falls well within the scope of the present invention. Suitable programming means include any means for directing a computer system to execute the steps of the method of the invention, including for example, systems comprised of processing units and arithmetic-logic circuits coupled to computer memory, which systems have the capability of storing in computer memory, which computer memory includes electronic circuits configured to store data and program instructions, programmed steps of the method of the invention for execution by a processing unit.
  • The invention also may be embodied in a computer program product, such as a diskette or other recording medium, for use with any suitable data processing system. Embodiments of a computer program product may be implemented by use of any recording medium for machine-readable information, including magnetic media, optical media, or other suitable media. Persons skilled in the art will immediately recognize that any computer system having suitable programming means will be capable of executing the steps of the method of the invention as embodied in a program product. Persons skilled in the art will recognize immediately that, although most of the exemplary embodiments described in this specification are oriented to software installed and executing on computer hardware, nevertheless, alternative embodiments implemented as firmware or as hardware are well within the scope of the present invention.
  • Scheduling Threads in a Multi-Processor Computer System
  • Exemplary methods, systems, and computer program products for scheduling threads in a multi-processor computer system according to embodiments of the present invention are described with reference to the accompanying drawings, beginning with FIG. 1. FIG. 1 sets forth a block diagram of an exemplary computer system (134) operable according to various embodiments of the present invention for scheduling threads in a multi-processor computer system by establishing for a thread having thread affinity for one or more processors an interrupt threshold representing a maximum permissible number of interrupts during thread execution on a processor, executing the thread on a current processor, counting interrupts during execution of the thread on the current processor, and removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
  • The computer (134) of FIG. 1 shows three computer processors (156). The number three is not a limitation of the invention, however, as computer systems according to embodiments of the present invention may include any number of processors. Moreover, the type of processor also is not a limitation of the present invention. Some processors may support execution of only one thread at a time. Other processors may support hardware multi-threading or ‘simultaneous multi-threading’ (‘SMT’), hardware support for multiple independent threads on a processor at the same time, multiple registers sets for threads instead of just one, allowing multiple threads to issue multiple instructions during each cycle of a processor's execution. Threads running on SMT processors experience interrupts just as do threads on single-threaded processors, and methods according to the present invention are equally useful on both.
  • The computer of FIG. 1 also includes random access memory (168) (“RAM”). Stored in RAM (168) is an application program (152). Application programs useful in systems according to the present invention includes, word processors, spreadsheets, database management systems, email clients, web servers, and any other application as will occur to those of skill in the art. Application programs according to embodiments of the present invention may be programmed to establish interrupt thresholds for threads and to establish maximum count durations for threads as, for example, a parameter in a createThread( ) call, or as a configuration parameter for all or part of a computer system, or as an API call which may be issued at any time from the application or from a thread in the application as, for example, setInterruptThreshold(Integer myInterruptThreshold).
  • Also stored in RAM (168) is an operating system (154), which in turn includes a dispatcher (102) and an interrupt handler (118). Operating systems useful in computers according to embodiments of the present invention include Unix™, Linux™, Microsoft NT™, and many others as will occur to those of skill in the art. Interrupt handler (118) is a software function in the operating system programmed according to embodiments of the present invention, in addition to its usual duties, also to count interrupts occurring during execution of a thread on a processor. Dispatcher (102) is a software function in the operating system programmed according to embodiments of the present invention, in addition to its usual duties of administering the status of threads in the system, also to remove thread affinity for a current processor to which a thread is current assigned (‘a current processor’) in dependence upon the counted number of interrupts and the interrupt threshold—if, for example, the counted number of interrupts exceeds the interrupt threshold.
  • The computer of FIG. 1 includes non-volatile computer memory (166) coupled through a system bus (160) to processors (156) and to other components of the computer. Non-volatile memory (166) may be implemented as a hard disk drive (170), optical disk drive (172), electrically erasable programmable read-only memory space (so-called ‘EEPROM’ or ‘Flash’ memory) (174), RAM drives (not shown), or as any other kind of non-volatile computer memory as will occur to those of skill in the art.
  • The example computer (134) of FIG. 1 includes a communications adapter (167) implementing connections for data communications with other computers, clients, servers, or networks. Communications adapters implement the hardware level of connections for data communications between computers directly with one another and through networks. Examples of communications adapters include modems for wired dial-up connections, Ethernet (IEEE 802.3) adapters for wired LAN connections, and 802.11b adapters for wireless LAN connections.
  • The example computer of FIG. 1 includes one or more input/output interface adapters (178). Input/output interface adapters in computers implement user-oriented input/output through, for example, software drivers and computer hardware for controlling output to display devices (180) such as computer display screens, as well as user input from user input devices (181), such as keyboards and mice.
  • For further explanation, FIG. 2 sets forth a block diagram of an exemplary operating system operable according to one or more embodiments of the present invention. In the exemplary system of FIG. 2, thread (204) has been granted (108) the processor (156). That is, thread (204) has been ‘dispatched’ to processor (156) and is currently running on processor (156). Thread (204) is authorized to occupy the processor for no more than a maximum amount of time referred to as a ‘time slice,’ after which the thread is said to be ‘preempted’ for return to the run queue until other threads with the same priority rating have a chance to run on the processor. The system of FIG. 2 includes a run queue (104) that contains all the threads of the system that are in the ‘ready’ state, waiting in priority order for dispatching to a processor. Threads are placed in the run queue (104) when they are first created and from the wait queue (106) upon returns from system calls (114). Threads also are placed on the run queue (104) when they are preempted (110) while running on a processor; that is, when a higher priority thread arrives in the run queue (104) or when a thread's time slice expires.
  • The system of FIG. 2 includes also a wait queue (106) that includes the threads of the systems that are in the ‘wait’ state, waiting for input/output returns from peripheral devices such as user input devices (181), display devices (180), communications adapters (167), memory (166), and others as will occur to those of skill in the art. Threads running on a processor are moved to the wait queue (106) and to the ‘wait’ state when they issue system calls (112). Such system calls are often requests for data input from or output to peripheral devices (181, 180, 167, 166).
  • A thread (204) running on a processor (156) may be interrupted (116). An interrupt is a mechanism by which a computer subsystem or module external to a processor may interrupt the otherwise normal flow of operations on the processor. In particular, in interrupt-drive input/output processing, interrupts are provided so that a thread sending or receiving data to or from a peripheral device need not block and wait. Instead, the thread issues a system call (112) and suspends operation while waiting on the wait queue (106) for its data. When the peripheral device has the data ready, the peripheral device triggers an interrupt (116) by signaling the processor (156), usually by way of a system bus (160). The processor ‘catches’ the interrupt, saves the thread's operating context, and then hands control over to an interrupt handler (118) that ‘clears’ the interrupt by processing it. The thread's saved operating context is at least all information needed to resume thread processing at the point at which it was interrupted, that is, at least the processor status registers and the location of the next instruction to be executed in the interrupted thread, in addition to whatever other information is needed by the particular operating system. The thread's operating context (205) in the example of FIG. 2 is saved on fast local memory directly available to the interrupt handler (118) and the dispatcher modules (102) with no need to access main memory. Such fast local memory directly available to the interrupt handler and the dispatcher modules may be implemented as, for example, a system control stack, kernel stack, or a scratch pad memory. In particular, in the example system of FIG. 2, the thread context (205) saved according to embodiments of the present invention includes an interrupt threshold (206) for the thread, the number of interrupts (212) experienced by the thread (204) so far in its operations on the processor (156), a maximum count duration (234), and an elapsed count time (236).
  • The maximum count duration (234) and the elapsed count time (236) in this example work together to prevent the interrupt count from extending without limit. The maximum count duration (234) is the maximum period for maintaining a count of interrupts. The elapsed count time (236) is the period through which interrupts have presently been counted. In this example, when the elapsed time count (236) exceeds the maximum count duration (234), the elapsed count time (236) and the interrupt count (212) are reset to zero.
  • It is useful for explanation to note that there is no required relationship between the size of a processing time slice for a thread and the thread's maximum count duration (234). A thread's maximum count duration (234) may be less than, equal to, or greater than the thread's time slice. A thread may be assigned a time slice of, for example, 20 milliseconds while its maximum count duration is set to 100 milliseconds. In such an example, interrupts of the thread are counted across at least five of the thread's time slices, and interrupts of the thread may be counted across more than five of the thread's time slices because the thread may not always time out on its time slice. Instead, the thread may be preempted by a higher-priority thread or may issue system calls, thereby losing a portion of a particular time slice. The example thread having a time slice of 20 milliseconds and a maximum count duration of 100 milliseconds therefore may run on the processor more than five times before its elapsed count time becomes equal to or greater than its maximum count duration.
  • For further explanation, FIG. 3 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes establishing (202) an interrupt threshold (206) for a thread (204). In the method of FIG. 3, the interrupt threshold represents a maximum number of interrupts permitted during thread execution on a processor. The interrupt threshold may be established by use of a parameter in a system call that creates a thread, as in, for example, createThread( . . . , Integer MaxInterrupts). Alternatively, an interrupt threshold may be set as a configuration parameter applicable to all threads in an operating system. Or an interrupt threshold may be set through a system call that may be issued at any time from an application or even from the thread itself as in, for example, setInterruptThreshold(Integer ThreadID, Integer MaxInterrupts). In the method of FIG. 3, establishing (202) an interrupt threshold may be carried out by storing a value of an interrupt threshold in memory associated with the thread. An interrupt threshold may be stored in a thread context (205 on FIG. 2) in registers on a processor, in a system stack, a kernel stack, scratchpad memory for the thread, or in a higher-level construct in the operating system such as a thread control block or a thread table.
  • The method of FIG. 3 includes executing (208) the thread on a current processor, the thread having thread affinity for one or more processors including the current processor. Executing the thread on a current processor is carried out typically by a dispatcher's granting the processor to the thread for thread execution. That is, the thread is dispatched from a run queue to the processor according to the thread's priority. The thread is dispatched to run on the processor for a length of time not exceeding a ‘time slice.’ Thread (204) in the example of FIG. 3 is shown with thread affinity for three processors, processor 1 (214), processor 3 (216), and processor 5 (218), where processor 3 (216) is taken as the current processor. That is, thread (204) is authorized to run on processor 1, processor 3, or processor 5, and thread (204) is assigned to actually run on processor 3.
  • The method of FIG. 3 includes counting (210) a number of interrupts during execution of the thread on the current processor. In the method of FIG. 3, counting (210) a number of interrupts may include incrementing by an interrupt handler a value stored in memory associated with the thread. In fact, counting (210) the number of interrupts during execution of the thread on the current processor is typically carried out by an interrupt handler. The interrupt handler is configured with an interrupted thread's context location, including the storage location of the thread's interrupt count, in fast local memory such as a system stack or scratchpad. At some point in processing between the time when the interrupt handler is first called and the time when the interrupt handler calls a ‘return from interrupt’ routine to return the processor to the interrupted thread, the interrupt handler increments the interrupt count for the thread.
  • The method of FIG. 3 also includes removing (220) thread affinity for the current processor in dependence upon the counted number of interrupts (212) and the interrupt threshold (206). As mentioned earlier, in the method of FIG. 3, removing (220) thread affinity for the current processor is typically carried out by removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor—either because the thread used its entire time slice on the processor or by the arrival in the run queue of a another thread having higher priority. Removing (220) thread affinity for the current processor in dependence upon the counted number of interrupts (212) and the interrupt threshold (206) in the example of FIG. 3 is carried out when the number of interrupts (212) as counted exceeds (228) the interrupt threshold (206) for the thread. That is, in the example of FIG. 3, a dispatcher during preemption processing compares (224) the number of interrupts (212) as counted for the thread and the interrupt threshold (206) to determine whether the number of interrupts exceeds the interrupt threshold. If the number of interrupts exceeds (228) the interrupt threshold, the dispatcher removes (220) thread affinity for the current processor. If the number of interrupts does not exceed (226) the interrupt threshold, the dispatcher continues (226) thread execution (208) on the current processor.
  • Removing (220) thread affinity for the current processor in the example of FIG. 3 where thread (204) has thread affinity for three processors:
      • processor 1 (214)
      • processor 3 (216)
      • processor 5 (218),
        results in the following new thread affinity for only two processors:
      • processor 1 (214)
      • processor 5 (218).
        In this example, where the current processor was previously processor 3 (216), the dispatcher will next assign either processor 1 or processor 5 as the current processor for actual thread execution.
  • Removing (220) thread affinity for the current processor may be implemented, for example, by use of a system call such Windows NT's “setThreadAffinityMask( ).” Calls to setThreadAffinityMask( ) may have the following form, for example:
      • DWORD_PTR SetThreadAffinityMask(HANDLE Thread, DWORD_PTR ThreadAffinityMask);
        where the double word ‘ThreadAffinityMask’ is a bit vector in which each bit represents the processor on which a thread is authorized to run. A call to setThreadAffinityMask( ) for the purpose of removing (220) thread affinity for a current processor sets a thread affinity mask for the thread that excludes the current processor. In a system having 16 processors numbered 0-15, for example, where a thread running on processor 1 has thread affinity for processors 0, 1, 8, and 12 a bit vector thread affinity mask may be expressed in as binary 0001 0001 0000 0011, hex 1103, or decimal 5355. In such an example, removing (220) thread affinity for a current processor may be carried out by setting any supported thread affinity mask that excludes the current processor, such as, for example, the mask expressed in binary as 0001 0001 0000 0001, which sets thread affinity to processors 0, 8, and 12 only, thereby excluding the current processor number 1. In this example, the next time a dispatcher assigns the subject thread to a processor, processor 1 will not be among the processors for which the thread has affinity, and the thread will be assigned to run on one of the other processors for which it has affinity.
  • In some methods for scheduling threads in a multi-processor computer system according to embodiments of the present invention, removing (220) thread affinity for the current processor may be carried out by placing the thread in a run queue of another processor. In some systems according to embodiments of the present invention, threads are dispatched to multiple processors from a single common run queue. In other systems, each processor has its own run queue. Systems having separate run queues for each processor may or may not support thread affinity masks. In systems where each processor has its own run queue, a dispatcher may remove (220) thread affinity for the current processor, whenever the thread is preempted, by placing the thread in a run queue of another processor.
  • In the method of FIG. 3, thread affinity may include only the current processor (254), and in such an example, the method also advantageously includes setting thread affinity (250) to include at least one other processor. This aspect of the method of FIG. 3 addresses examples in which a system supports thread affinity masking, but the present thread affinity mask for a process includes only one processor. If that processor is removed from the mask, another needs to be added for the thread to run. Such systems may enforce default assignments of thread affinity. The method of FIG. 3, however, advantageously includes setting thread affinity in this circumstance to at least one processor other than the current one just removed from affinity. In the method of FIG. 3, when removing a thread affinity for a current processor (220), if the thread has affinity with more than one processor (252), then there is no need to add (250) a processor to the thread affinity; the dispatcher will dispatch the thread to a new current processor where the thread will continue execution (208).
  • For further explanation, FIG. 4 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time. The method of FIG. 4 is an extension of the method of FIG. 3. That is, the method of FIG. 4 includes establishing (202) an interrupt threshold, counting interrupts (210), and removing (220) thread affinity for the current processor in dependence upon the counted number of interrupts (212) and the interrupt threshold (206), all as described above for the method of FIG. 3. In addition, the method of FIG. 4 also includes establishing (230) a maximum count duration (234) for the thread (204). A maximum count duration (234) for the thread (204) may be implemented, for example, as an integer stored in association with the thread context in a system stack, a scratchpad, a thread control block, a thread table, and so on, to represent the period of time during which interrupts are to be counted for a thread. Establishing (230) a maximum count duration (234) for the thread (204) then may be implemented through a system call provided for that purpose such as, for example:
      • INTEGER SetMaxCountDuration(HANDLE Thread, INTEGER MaxCountDuration).
  • The method of FIG. 4 also includes measuring (232) elapsed count time (236) for the thread during execution of the thread on the current processor. Operating systems typically include a function that runs periodically, for example, once per second, to age threads. Such a function may be modified according to embodiments of the present invention to increment elapsed count time also for a thread. Maximum count duration may be less than, equal to, or greater than a thread's assigned time slice for actual possession of a processor. Elapsed count time therefore may persist across time slices, that is, across multiple run states for a thread, across multiple trips from the run queue to a processor and back, across multiple preemptions. Alternatively, if maximum count duration for a thread is set to a period that is less than the thread's assigned time slice, elapsed count time may always be less than the actual duration of a thread's possession of a processor.
  • The method of FIG. 4 also includes resetting (244, 246) both the counted number of interrupts (212) and the measured elapsed count time (236) to zero in dependence upon the measured elapsed count time (236) and the maximum count duration (234). More particularly, both the counted number of interrupts (212) and the measured elapsed count time (236) are reset (244, 246) to zero in the example of FIG. 4 when the elapsed count time (236) exceeds (240) the maximum count duration (234) for the thread (204). In the example of FIG. 4, an interrupt handler compares (238) the elapsed count time (236) and the maximum count duration (234) for the thread (204). If the elapsed count time (236) does not exceed (242) the maximum count duration (234) for the thread (204), interrupt counting (210) proceeds without resetting (244, 246) the counted number of interrupts (212) and the measured elapsed count time (236). If the elapsed count time (236) does exceed (240) the maximum count duration (234) for the thread (204), interrupt counting (210) proceeds only after resetting (244, 246) both the counted number of interrupts (212) and the measured elapsed count time (236) to zero.
  • For further explanation, FIG. 5 sets forth a flow chart illustrating an exemplary method for scheduling threads in a multi-processor computer system that includes operations with a maximum count duration and an elapsed count time in removing thread affinity according to a counted number of interrupts and an interrupt threshold. The method of FIG. 5 is an extension of the method of FIG. 3. That is, the method of FIG. 5 includes establishing (202) an interrupt threshold, counting interrupts (210), and removing (220) thread affinity for the current processor in dependence upon the counted number of interrupts (212) and the interrupt threshold (206), all as described above for the method of FIG. 3. In addition, The method of FIG. 5 also includes establishing (230) a maximum count duration (234) for the thread (204) and measuring (232) elapsed count time (236) for the thread during execution of the thread on the current processor as described above for the method of FIG. 4. In the method of FIG. 5, however, because the thread will now be dispatched for its next time slice to a different processor, removing thread affinity (220) for the current processor in dependence upon the counted number of interrupts (212) and the interrupt threshold (206) advantageously includes resetting (244) the counted number of interrupts (212) to zero and resetting (246) the measured elapsed count time (236) to zero.
  • It will be understood from the foregoing description that modifications and changes may be made in various embodiments of the present invention without departing from its true spirit. The descriptions in this specification are for purposes of illustration only and are not to be construed in a limiting sense. The scope of the present invention is limited only by the language of the following claims.

Claims (24)

1. A method for scheduling threads in a multi-processor computer, the method comprising:
establishing an interrupt threshold for a thread, the interrupt threshold comprising a maximum permissible number of interrupts during thread execution on a processor;
executing the thread on a current processor, the thread having thread affinity for one or more processors including the current processor;
counting a number of interrupts during execution of the thread on the current processor; and
removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
2. The method of claim 1 wherein establishing an interrupt threshold further comprises storing a value of an interrupt threshold in memory associated with the thread.
3. The method of claim 1 wherein counting a number of interrupts further comprises incrementing by an interrupt handler a value stored in memory associated with the thread.
4. The method of claim 1 wherein removing thread affinity for the current processor further comprises removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor.
5. The method of claim 1 wherein removing thread affinity for the current processor further comprises placing the thread in a run queue of another processor.
6. The method of claim 1 wherein the thread affinity includes only the current processor, and the method further comprises setting thread affinity to include at least one other processor.
7. The method of claim 1 further comprising:
establishing a maximum count duration for the thread;
measuring elapsed count time for the thread during execution of the thread on the current processor;
resetting the counted number of interrupts to zero in dependence upon the measured elapsed count time and the maximum count duration; and
resetting the measured elapsed count time to zero in dependence upon the measured elapsed count time and the maximum count duration.
8. The method of claim 1 further comprising:
establishing a maximum count duration for the thread;
measuring elapsed count time for the thread during execution of the thread on the current processor;
wherein removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold further comprises:
resetting the counted number of interrupts to zero; and
resetting the measured elapsed count time to zero.
9. A system for scheduling threads in a multi-processor computer, the system comprising:
means for establishing an interrupt threshold for a thread, the interrupt threshold comprising a maximum permissible number of interrupts during thread execution on a processor;
means for executing the thread on a current processor, the thread having thread affinity for one or more processors including the current processor;
means for counting a number of interrupts during execution of the thread on the current processor; and
means for removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
10. The system of claim 9 wherein means for establishing an interrupt threshold further comprises means for storing a value of an interrupt threshold in memory associated with the thread.
11. The system of claim 9 wherein means for counting a number of interrupts further comprises means for incrementing by an interrupt handler a value stored in memory associated with the thread.
12. The system of claim 9 wherein means for removing thread affinity for the current processor further comprises means for removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor.
13. The system of claim 9 wherein means for removing thread affinity for the current processor further comprises means for placing the thread in a run queue of another processor.
14. The system of claim 9 wherein the thread affinity includes only the current processor, and the system further comprises means for setting thread affinity to include at least one other processor.
15. The system of claim 9 further comprising:
means for establishing a maximum count duration for the thread;
means for measuring elapsed count time for the thread during execution of the thread on the current processor;
means for resetting the counted number of interrupts to zero in dependence upon the measured elapsed count time and the maximum count duration; and
means for resetting the measured elapsed count time to zero in dependence upon the measured elapsed count time and the maximum count duration.
16. The system of claim 9 further comprising:
means for establishing a maximum count duration for the thread;
means for measuring elapsed count time for the thread during execution of the thread on the current processor;
wherein means for removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold further comprises: means for resetting the counted number of interrupts to zero; and
means for resetting the measured elapsed count time to zero.
17. A computer program product for scheduling threads in a multi-processor computer, the computer program product comprising:
a recording medium;
means, recorded on the recording medium, for establishing an interrupt threshold for a thread, the interrupt threshold comprising a maximum permissible number of interrupts during thread execution on a processor;
means, recorded on the recording medium, for executing the thread on a current processor, the thread having thread affinity for one or more processors including the current processor;
means, recorded on the recording medium, for counting a number of interrupts during execution of the thread on the current processor; and
means, recorded on the recording medium, for removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold.
18. The computer program product of claim 17 wherein means, recorded on the recording medium, for establishing an interrupt threshold further comprises means, recorded on the recording medium, for storing a value of an interrupt threshold in memory associated with the thread.
19. The computer program product of claim 17 wherein means, recorded on the recording medium, for counting a number of interrupts further comprises means, recorded on the recording medium, for incrementing by an interrupt handler a value stored in memory associated with the thread.
20. The computer program product of claim 17 wherein means, recorded on the recording medium, for removing thread affinity for the current processor further comprises means, recorded on the recording medium, for removing thread affinity by a dispatcher when the thread is preempted from execution on the current processor.
21. The computer program product of claim 17 wherein means, recorded on the recording medium, for removing thread affinity for the current processor further comprises means, recorded on the recording medium, for placing the thread in a run queue of another processor.
22. The computer program product of claim 17 wherein the thread affinity includes only the current processor, and the computer program product further comprises means, recorded on the recording medium, for setting thread affinity to include at least one other processor.
23. The computer program product of claim 17 further comprising:
means, recorded on the recording medium, for establishing a maximum count duration for the thread;
means, recorded on the recording medium, for measuring elapsed count time for the thread during execution of the thread on the current processor;
means, recorded on the recording medium, for resetting the counted number of interrupts to zero in dependence upon the measured elapsed count time and the maximum count duration; and
means, recorded on the recording medium, for resetting the measured elapsed count time to zero in dependence upon the measured elapsed count time and the maximum count duration.
24. The computer program product of claim 17 further comprising:
means, recorded on the recording medium, for establishing a maximum count duration for the thread;
means, recorded on the recording medium, for measuring elapsed count time for the thread during execution of the thread on the current processor;
wherein means, recorded on the recording medium, for removing thread affinity for the current processor in dependence upon the counted number of interrupts and the interrupt threshold further comprises:
means, recorded on the recording medium, for resetting the counted number of interrupts to zero; and
means, recorded on the recording medium, for resetting the measured elapsed count time to zero.
US10/834,498 2004-04-29 2004-04-29 Scheduling threads in a multi-processor computer Abandoned US20050246461A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US10/834,498 US20050246461A1 (en) 2004-04-29 2004-04-29 Scheduling threads in a multi-processor computer
US12/055,179 US7831980B2 (en) 2004-04-29 2008-03-25 Scheduling threads in a multi-processor computer

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US10/834,498 US20050246461A1 (en) 2004-04-29 2004-04-29 Scheduling threads in a multi-processor computer

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US12/055,179 Continuation US7831980B2 (en) 2004-04-29 2008-03-25 Scheduling threads in a multi-processor computer

Publications (1)

Publication Number Publication Date
US20050246461A1 true US20050246461A1 (en) 2005-11-03

Family

ID=35188391

Family Applications (2)

Application Number Title Priority Date Filing Date
US10/834,498 Abandoned US20050246461A1 (en) 2004-04-29 2004-04-29 Scheduling threads in a multi-processor computer
US12/055,179 Expired - Fee Related US7831980B2 (en) 2004-04-29 2008-03-25 Scheduling threads in a multi-processor computer

Family Applications After (1)

Application Number Title Priority Date Filing Date
US12/055,179 Expired - Fee Related US7831980B2 (en) 2004-04-29 2008-03-25 Scheduling threads in a multi-processor computer

Country Status (1)

Country Link
US (2) US20050246461A1 (en)

Cited By (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060294319A1 (en) * 2005-06-24 2006-12-28 Arm Limited Managing snoop operations in a data processing apparatus
US20070050671A1 (en) * 2005-08-30 2007-03-01 Markevitch James A Selective error recovery of processing complex using privilege-level error discrimination
US20070294695A1 (en) * 2006-06-19 2007-12-20 Craig Jensen Method, system, and apparatus for scheduling computer micro-jobs to execute at non-disruptive times
US20080005615A1 (en) * 2006-06-29 2008-01-03 Scott Brenden Method and apparatus for redirection of machine check interrupts in multithreaded systems
US20080086734A1 (en) * 2006-10-10 2008-04-10 Craig Jensen Resource-based scheduler
US20080086733A1 (en) * 2006-10-10 2008-04-10 Diskeeper Corporation Computer micro-jobs
US20080235684A1 (en) * 2006-05-18 2008-09-25 International Business Machines Corporation Heuristic Based Affinity Dispatching for Shared Processor Partition Dispatching
US20080320194A1 (en) * 2007-06-20 2008-12-25 Microsoft Corporation Monitored notification facility for reducing inter-process / inter-partition interrupts
US20090031318A1 (en) * 2007-07-24 2009-01-29 Microsoft Corporation Application compatibility in multi-core systems
US20090031317A1 (en) * 2007-07-24 2009-01-29 Microsoft Corporation Scheduling threads in multi-core systems
US20090235270A1 (en) * 2006-05-18 2009-09-17 International Business Machines Corporation Optimization of Thread Wake Up for Shared Processor Partitions
US20100017804A1 (en) * 2008-07-21 2010-01-21 International Business Machines Corporation Thread-to-Processor Assignment Based on Affinity Identifiers
US20100099357A1 (en) * 2008-10-20 2010-04-22 Aiconn Technology Corporation Wireless transceiver module
US20110088022A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Dynamic Optimization Using A Resource Cost Registry
US20110088038A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Multicore Runtime Management Using Process Affinity Graphs
US20110088021A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Parallel Dynamic Optimization
US7996843B2 (en) 1999-08-25 2011-08-09 Qnx Software Systems Gmbh & Co. Kg Symmetric multi-processor system
US8051418B1 (en) * 2005-03-21 2011-11-01 Oracle America, Inc. Techniques for providing improved affinity scheduling in a multiprocessor computer system
US20110289361A1 (en) * 2010-05-24 2011-11-24 International Business Machines Corporation Idle transitions sampling with execution context
US8253749B1 (en) * 2006-03-08 2012-08-28 Nvidia Corporation Using affinity masks to control multi-GPU processing
CN103019850A (en) * 2011-09-28 2013-04-03 中兴通讯股份有限公司 Method and device for binding tasks
US8612986B2 (en) 2004-08-12 2013-12-17 International Business Machines Corporation Computer program product for scheduling ready threads in a multiprocessor computer based on an interrupt mask flag value associated with a thread and a current processor priority register value
US20140189185A1 (en) * 2011-09-20 2014-07-03 Fujitsu Limited Interrupt monitoring system and computer system
CN104090747A (en) * 2014-05-22 2014-10-08 清华大学 Method for optimizing Linux intelligent terminal through real-time scheduling optimizer
US8892931B2 (en) 2009-10-20 2014-11-18 Empire Technology Development Llc Power channel monitor for a multicore processor
CN104572282A (en) * 2015-01-05 2015-04-29 浪潮电子信息产业股份有限公司 Automatic method for binding SAS controller interruption to CPU
US9311153B2 (en) 2013-05-15 2016-04-12 Empire Technology Development Llc Core affinity bitmask translation
US20160337267A1 (en) * 2015-05-15 2016-11-17 Broadcom Corporation Communication Device for Limiting Processing of Interrupt-Causing Messages
US9870275B2 (en) * 2015-05-12 2018-01-16 International Business Machines Corporation Processor thread management
US10242420B2 (en) * 2010-12-15 2019-03-26 Advanced Micro Devices, Inc. Preemptive context switching of processes on an accelerated processing device (APD) based on time quanta
US20200210230A1 (en) * 2019-01-02 2020-07-02 Mellanox Technologies, Ltd. Multi-Processor Queuing Model
CN116401990A (en) * 2023-01-30 2023-07-07 芯华章科技(北京)有限公司 Method, device, system and storage medium for processing interrupt event

Families Citing this family (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4856983B2 (en) * 2006-03-02 2012-01-18 株式会社日立製作所 Storage system and scheduling method
US20080181254A1 (en) * 2007-01-25 2008-07-31 Inventec Corporation Data transmission method
US8739165B2 (en) * 2008-01-22 2014-05-27 Freescale Semiconductor, Inc. Shared resource based thread scheduling with affinity and/or selectable criteria
JP4801761B2 (en) * 2009-08-12 2011-10-26 株式会社日立製作所 Database management method and system, and processing program therefor
US8959525B2 (en) * 2009-10-28 2015-02-17 International Business Machines Corporation Systems and methods for affinity driven distributed scheduling of parallel computations
US9354934B2 (en) * 2012-01-05 2016-05-31 International Business Machines Corporation Partitioned shared processor interrupt-intensive task segregator
US9075789B2 (en) * 2012-12-11 2015-07-07 General Dynamics C4 Systems, Inc. Methods and apparatus for interleaving priorities of a plurality of virtual processors
US20230315652A1 (en) * 2022-03-22 2023-10-05 Red Hat, Inc. Efficient queue access for user-space packet processing

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5907702A (en) * 1997-03-28 1999-05-25 International Business Machines Corporation Method and apparatus for decreasing thread switch latency in a multithread processor
US6105051A (en) * 1997-10-23 2000-08-15 International Business Machines Corporation Apparatus and method to guarantee forward progress in execution of threads in a multithreaded processor
US6212544B1 (en) * 1997-10-23 2001-04-03 International Business Machines Corporation Altering thread priorities in a multithreaded processor
US6289369B1 (en) * 1998-08-25 2001-09-11 International Business Machines Corporation Affinity, locality, and load balancing in scheduling user program-level threads for execution by a computer system
US6338078B1 (en) * 1998-12-17 2002-01-08 International Business Machines Corporation System and method for sequencing packets for multiprocessor parallelization in a computer network system
US6542921B1 (en) * 1999-07-08 2003-04-01 Intel Corporation Method and apparatus for controlling the processing priority between multiple threads in a multithreaded processor
US6697935B1 (en) * 1997-10-23 2004-02-24 International Business Machines Corporation Method and apparatus for selecting thread switch events in a multithreaded processor
US6754690B2 (en) * 1999-09-16 2004-06-22 Honeywell, Inc. Method for time partitioned application scheduling in a computer operating system
US6842832B1 (en) * 2000-08-25 2005-01-11 International Business Machines Corporation Reclaim space reserve for a compressed memory system
US20050102458A1 (en) * 2003-11-12 2005-05-12 Infineon Technologies North America Corp. Interrupt and trap handling in an embedded multi-thread processor to avoid priority inversion and maintain real-time operation
US7065598B2 (en) * 2002-12-20 2006-06-20 Intel Corporation Method, system, and article of manufacture for adjusting interrupt levels
US7234143B2 (en) * 2002-06-20 2007-06-19 Hewlett-Packard Development Company, L.P. Spin-yielding in multi-threaded systems

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5907702A (en) * 1997-03-28 1999-05-25 International Business Machines Corporation Method and apparatus for decreasing thread switch latency in a multithread processor
US6105051A (en) * 1997-10-23 2000-08-15 International Business Machines Corporation Apparatus and method to guarantee forward progress in execution of threads in a multithreaded processor
US6212544B1 (en) * 1997-10-23 2001-04-03 International Business Machines Corporation Altering thread priorities in a multithreaded processor
US6697935B1 (en) * 1997-10-23 2004-02-24 International Business Machines Corporation Method and apparatus for selecting thread switch events in a multithreaded processor
US6289369B1 (en) * 1998-08-25 2001-09-11 International Business Machines Corporation Affinity, locality, and load balancing in scheduling user program-level threads for execution by a computer system
US6338078B1 (en) * 1998-12-17 2002-01-08 International Business Machines Corporation System and method for sequencing packets for multiprocessor parallelization in a computer network system
US6542921B1 (en) * 1999-07-08 2003-04-01 Intel Corporation Method and apparatus for controlling the processing priority between multiple threads in a multithreaded processor
US6754690B2 (en) * 1999-09-16 2004-06-22 Honeywell, Inc. Method for time partitioned application scheduling in a computer operating system
US6842832B1 (en) * 2000-08-25 2005-01-11 International Business Machines Corporation Reclaim space reserve for a compressed memory system
US7234143B2 (en) * 2002-06-20 2007-06-19 Hewlett-Packard Development Company, L.P. Spin-yielding in multi-threaded systems
US7065598B2 (en) * 2002-12-20 2006-06-20 Intel Corporation Method, system, and article of manufacture for adjusting interrupt levels
US20050102458A1 (en) * 2003-11-12 2005-05-12 Infineon Technologies North America Corp. Interrupt and trap handling in an embedded multi-thread processor to avoid priority inversion and maintain real-time operation

Cited By (55)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7996843B2 (en) 1999-08-25 2011-08-09 Qnx Software Systems Gmbh & Co. Kg Symmetric multi-processor system
US8572626B2 (en) 1999-08-25 2013-10-29 Qnx Software Systems Limited Symmetric multi-processor system
US8612986B2 (en) 2004-08-12 2013-12-17 International Business Machines Corporation Computer program product for scheduling ready threads in a multiprocessor computer based on an interrupt mask flag value associated with a thread and a current processor priority register value
US8051418B1 (en) * 2005-03-21 2011-11-01 Oracle America, Inc. Techniques for providing improved affinity scheduling in a multiprocessor computer system
US8407708B2 (en) 2005-03-21 2013-03-26 Oracle America, Inc. Techniques for providing improved affinity scheduling in a multiprocessor computer system
US20060294319A1 (en) * 2005-06-24 2006-12-28 Arm Limited Managing snoop operations in a data processing apparatus
US20070050671A1 (en) * 2005-08-30 2007-03-01 Markevitch James A Selective error recovery of processing complex using privilege-level error discrimination
US7721151B2 (en) * 2005-08-30 2010-05-18 Cisco Technology, Inc. Selective error recovery of processing complex using privilege-level error discrimination
US8253749B1 (en) * 2006-03-08 2012-08-28 Nvidia Corporation Using affinity masks to control multi-GPU processing
US20090235270A1 (en) * 2006-05-18 2009-09-17 International Business Machines Corporation Optimization of Thread Wake Up for Shared Processor Partitions
US8156498B2 (en) 2006-05-18 2012-04-10 International Business Machines Corporation Optimization of thread wake up for shared processor partitions
US8108866B2 (en) * 2006-05-18 2012-01-31 International Business Machines Corporation Heuristic based affinity dispatching for shared processor partition dispatching
US20080235684A1 (en) * 2006-05-18 2008-09-25 International Business Machines Corporation Heuristic Based Affinity Dispatching for Shared Processor Partition Dispatching
US8239869B2 (en) 2006-06-19 2012-08-07 Condusiv Technologies Corporation Method, system and apparatus for scheduling computer micro-jobs to execute at non-disruptive times and modifying a minimum wait time between the utilization windows for monitoring the resources
US9727372B2 (en) 2006-06-19 2017-08-08 Invisitasking Llc Scheduling computer jobs for execution
US20070294695A1 (en) * 2006-06-19 2007-12-20 Craig Jensen Method, system, and apparatus for scheduling computer micro-jobs to execute at non-disruptive times
US7721148B2 (en) * 2006-06-29 2010-05-18 Intel Corporation Method and apparatus for redirection of machine check interrupts in multithreaded systems
US20080005615A1 (en) * 2006-06-29 2008-01-03 Scott Brenden Method and apparatus for redirection of machine check interrupts in multithreaded systems
US20080086733A1 (en) * 2006-10-10 2008-04-10 Diskeeper Corporation Computer micro-jobs
US9588809B2 (en) 2006-10-10 2017-03-07 Invistasking LLC Resource-based scheduler
US8056083B2 (en) * 2006-10-10 2011-11-08 Diskeeper Corporation Dividing a computer job into micro-jobs for execution
US8615765B2 (en) 2006-10-10 2013-12-24 Condusiv Technologies Corporation Dividing a computer job into micro-jobs
US20080086734A1 (en) * 2006-10-10 2008-04-10 Craig Jensen Resource-based scheduler
US7913009B2 (en) * 2007-06-20 2011-03-22 Microsoft Corporation Monitored notification facility for reducing inter-process/inter-partition interrupts
US20080320194A1 (en) * 2007-06-20 2008-12-25 Microsoft Corporation Monitored notification facility for reducing inter-process / inter-partition interrupts
US20090031318A1 (en) * 2007-07-24 2009-01-29 Microsoft Corporation Application compatibility in multi-core systems
US20090031317A1 (en) * 2007-07-24 2009-01-29 Microsoft Corporation Scheduling threads in multi-core systems
US8327363B2 (en) * 2007-07-24 2012-12-04 Microsoft Corporation Application compatibility in multi-core systems
US8544014B2 (en) 2007-07-24 2013-09-24 Microsoft Corporation Scheduling threads in multi-core systems
US8332852B2 (en) * 2008-07-21 2012-12-11 International Business Machines Corporation Thread-to-processor assignment based on affinity identifiers
US20100017804A1 (en) * 2008-07-21 2010-01-21 International Business Machines Corporation Thread-to-Processor Assignment Based on Affinity Identifiers
US20100099357A1 (en) * 2008-10-20 2010-04-22 Aiconn Technology Corporation Wireless transceiver module
US8627300B2 (en) 2009-10-13 2014-01-07 Empire Technology Development Llc Parallel dynamic optimization
US20110088022A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Dynamic Optimization Using A Resource Cost Registry
US20110088038A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Multicore Runtime Management Using Process Affinity Graphs
US8635606B2 (en) 2009-10-13 2014-01-21 Empire Technology Development Llc Dynamic optimization using a resource cost registry
US8856794B2 (en) * 2009-10-13 2014-10-07 Empire Technology Development Llc Multicore runtime management using process affinity graphs
US20110088021A1 (en) * 2009-10-13 2011-04-14 Ezekiel John Joseph Kruglick Parallel Dynamic Optimization
US8892931B2 (en) 2009-10-20 2014-11-18 Empire Technology Development Llc Power channel monitor for a multicore processor
US20110289361A1 (en) * 2010-05-24 2011-11-24 International Business Machines Corporation Idle transitions sampling with execution context
US9176783B2 (en) * 2010-05-24 2015-11-03 International Business Machines Corporation Idle transitions sampling with execution context
US10242420B2 (en) * 2010-12-15 2019-03-26 Advanced Micro Devices, Inc. Preemptive context switching of processes on an accelerated processing device (APD) based on time quanta
US20140189185A1 (en) * 2011-09-20 2014-07-03 Fujitsu Limited Interrupt monitoring system and computer system
US9355049B2 (en) * 2011-09-20 2016-05-31 Fujitsu Limited Interrupt monitoring system and computer system
CN103019850A (en) * 2011-09-28 2013-04-03 中兴通讯股份有限公司 Method and device for binding tasks
US9311153B2 (en) 2013-05-15 2016-04-12 Empire Technology Development Llc Core affinity bitmask translation
CN104090747A (en) * 2014-05-22 2014-10-08 清华大学 Method for optimizing Linux intelligent terminal through real-time scheduling optimizer
CN104572282A (en) * 2015-01-05 2015-04-29 浪潮电子信息产业股份有限公司 Automatic method for binding SAS controller interruption to CPU
US9870275B2 (en) * 2015-05-12 2018-01-16 International Business Machines Corporation Processor thread management
US10831559B2 (en) 2015-05-12 2020-11-10 International Business Machines Corporation Processor thread management
US20160337267A1 (en) * 2015-05-15 2016-11-17 Broadcom Corporation Communication Device for Limiting Processing of Interrupt-Causing Messages
US10009294B2 (en) * 2015-05-15 2018-06-26 Avago Technologies General Ip (Singapore) Pte. Ltd. Communication device for limiting processing of interrupt-causing messages
US20200210230A1 (en) * 2019-01-02 2020-07-02 Mellanox Technologies, Ltd. Multi-Processor Queuing Model
US11182205B2 (en) * 2019-01-02 2021-11-23 Mellanox Technologies, Ltd. Multi-processor queuing model
CN116401990A (en) * 2023-01-30 2023-07-07 芯华章科技(北京)有限公司 Method, device, system and storage medium for processing interrupt event

Also Published As

Publication number Publication date
US7831980B2 (en) 2010-11-09
US20080178183A1 (en) 2008-07-24

Similar Documents

Publication Publication Date Title
US7831980B2 (en) Scheduling threads in a multi-processor computer
US7962913B2 (en) Scheduling threads in a multiprocessor computer
US10733032B2 (en) Migrating operating system interference events to a second set of logical processors along with a set of timers that are synchronized using a global clock
US11157061B2 (en) Processor management via thread status
US7996593B2 (en) Interrupt handling using simultaneous multi-threading
US8006247B2 (en) Multi-tasking real-time operating system for microprocessors with limited memory
US20060130062A1 (en) Scheduling threads in a multi-threaded computer
US7953906B2 (en) Multiple interrupt handling method, devices and software
US5872913A (en) System and method for low overhead, high precision performance measurements using state transistions
US20060112208A1 (en) Interrupt thresholding for SMT and multi processor systems
US20060037021A1 (en) System, apparatus and method of adaptively queueing processes for execution scheduling
US11074101B2 (en) Automated switching between interrupt context I/O processing and thread context I/O processing
CN111897637B (en) Job scheduling method, device, host and storage medium
CN111597044A (en) Task scheduling method and device, storage medium and electronic equipment
CN114461365A (en) Process scheduling processing method, device, equipment and storage medium
Nosrati et al. Task scheduling algorithms introduction
CN114661415A (en) Scheduling method and computer system
US8607232B2 (en) Identifying a transient thread and excluding the transient thread from a processor load calculation
CN112559117A (en) Timer processing method and device, electronic equipment and computer storage medium
JPS6126095B2 (en)
GB2500434A (en) Scheduling actions based on the state of the resources needed to execute the actions
Hansen et al. Prioritizing network event handling in clusters of workstations
CN116795490A (en) vCPU scheduling method, device, equipment and storage medium
Hong et al. New Scheme of Implementing Real-Time Linux
Ramachandra et al. Analysis of CPU Utilisation and Stack Consumption of a Multimedia Embedded System

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:ACCAPADI, JOS MANUEL;DIERKS, HERMAN DIETRICH JR.;DUNSHEA, ANDREW;AND OTHERS;REEL/FRAME:014651/0101

Effective date: 20040427

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION