US10983823B2 - Computer apparatus, task initiation method, and computer readable medium - Google Patents

Computer apparatus, task initiation method, and computer readable medium Download PDF

Info

Publication number
US10983823B2
US10983823B2 US16/466,180 US201716466180A US10983823B2 US 10983823 B2 US10983823 B2 US 10983823B2 US 201716466180 A US201716466180 A US 201716466180A US 10983823 B2 US10983823 B2 US 10983823B2
Authority
US
United States
Prior art keywords
interrupt
task
time
dependent
flag
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.)
Active, expires
Application number
US16/466,180
Other versions
US20200004581A1 (en
Inventor
Chisato Sato
Yoshiaki Katayama
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.)
Mitsubishi Electric Corp
Original Assignee
Mitsubishi Electric 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 Mitsubishi Electric Corp filed Critical Mitsubishi Electric Corp
Assigned to MITSUBISHI ELECTRIC CORPORATION reassignment MITSUBISHI ELECTRIC CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: KATAYAMA, YOSHIAKI, SATO, CHISATO
Publication of US20200004581A1 publication Critical patent/US20200004581A1/en
Application granted granted Critical
Publication of US10983823B2 publication Critical patent/US10983823B2/en
Active legal-status Critical Current
Adjusted expiration legal-status Critical

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
    • G06F9/4825Interrupt from clock, e.g. time of day
    • 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
    • G06F9/4831Task transfer initiation or dispatching by interrupt, e.g. masked with variable priority
    • G06F9/4837Task transfer initiation or dispatching by interrupt, e.g. masked with variable priority time dependent
    • 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/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • G06F9/4881Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues
    • G06F9/4887Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues involving deadlines, e.g. rate based, periodic
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Definitions

  • the present invention relates to a computer apparatus, a task initiation program, and a task initiation method.
  • Non-Patent Literature 1 discloses a computer system using a real-time operating system (OS) for embedded devices.
  • the computer system of Non-Patent Literature 1 has two types of interrupt handlers: a kernel-managed interrupt handler which is dependent on the OS and a non-kernel-managed interrupt handler which is independent of the OS.
  • the kernel-managed interrupt handler is also referred to as an OS-dependent interrupt handler.
  • the non-kernel-managed interrupt handler is also referred to as an OS-independent interrupt handler.
  • the OS-dependent interrupt handler can issue an OS service call within the OS-dependent interrupt handler. However, an OS-dependent interrupt generated while the service call is being processed is delayed until the OS-dependent interrupt can be accepted.
  • the OS-independent interrupt handler cannot issue an OS service call within the OS-independent interrupt handler.
  • an OS-independent interrupt generated while a service call is being processed can be accepted even in a section where OS-dependent interrupts cannot be accepted.
  • Patent Literature 1 JP 2001-092676 A
  • Non-Patent Literature 1 M3T-MR30/4 V.4.01 Users Manual (3.6 Interrupts)
  • Non-Patent Literature 2 Mitsubishi Electric Technical Report, February 2003, “Third-Generation Mobile Phone Technology” (Feature Article: Basic Software for W-CDMA Portable Devices)
  • an OS-independent interrupt handler initiates a process of a task managed by the OS via an OS-dependent interrupt handler.
  • an OS-dependent interrupt generated using a periodic timer interrupt is used to monitor the state of a flag to be updated when a task is to be initiated by an OS-independent interrupt, so as to initiate the task as necessary.
  • Non-Patent Literature 2 since OS-dependent interrupts must always be generated periodically, a tickless timer method disclosed in Non-Patent Literature 2 cannot be adopted, and the power consumption of a computer apparatus is wasted.
  • the tickless timer method is a method in which system clock interrupts can be generated only when necessary.
  • a computer apparatus is connected with a device and includes an OS execution unit to execute an operating system (OS) and generate an OS-dependent interrupt, and the computer apparatus includes:
  • an OS-independent interrupt processing unit determines whether or not to initiate a task, and when the task is to be initiated, turns on the flag and causes an OS execution unit to generate an OS-dependent interrupt.
  • an OS-dependent interrupt processing unit determines whether or not the flag is on, and when the flag is on, initiates the task and turns off the flag. Therefore, according to the computer apparatus of the present invention, it is possible to generate an OS-dependent interrupt irregularly upon occurrence of an OS-independent interrupt and to initiate a task by the OS-dependent interrupt processing unit. Hence, CPU utilization can be enhanced and power consumption can be reduced.
  • FIG. 1 is a configuration diagram of a computer apparatus 100 according to a first embodiment
  • FIG. 2 is an example configuration of an array of a flag 141 according to the first embodiment
  • FIG. 3 is a diagram of correspondence between element numbers and flag values of the flag 141 according to the first embodiment
  • FIG. 4 is a flowchart illustrating a task initiation process S 100 of a task initiation method 510 and a task initiation program 520 of the computer apparatus 100 according to the first embodiment;
  • FIG. 5 is a flowchart illustrating an OS-dependent interrupt process S 10 according to the first embodiment
  • FIG. 6 is a flowchart illustrating an OS-independent interrupt process S 20 according to the first embodiment
  • FIG. 7 is a diagram illustrating interrupt occurrence timing which is assumed in a specific example of the OS-dependent interrupt process S 10 according to the first embodiment
  • FIG. 8 is a diagram illustrating a timeout queue and task management information which correspond to FIG. 7 ;
  • FIG. 9 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which only an OS-dependent interrupt occurs.
  • FIG. 10 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which an OS-independent interrupt occurs at a time point T 1 which is 3 ms after the start point of a period following the process in FIG. 9 ;
  • FIG. 11 is a configuration diagram of a computer apparatus 100 according to a modification example of the first embodiment.
  • a configuration of a computer apparatus 100 according to this embodiment will be described with reference to FIG. 1 .
  • the computer apparatus 100 is connected with a device 200 .
  • the device 200 generates an OS-independent interrupt 201 due to a state of the device 200 .
  • the device 200 is a motor 210 or a sensor 220 .
  • the device 200 such as the motor 210 or the sensor 220 , generates an interrupt due to a state change including completion of an operation or an error as the OS-independent interrupt 201 .
  • the computer apparatus 100 may use a timer to periodically generate OS-independent interrupts so as to monitor changes in the state of the device 200 .
  • the computer apparatus 100 is a computer.
  • the computer apparatus 100 includes hardware, such as a processor 910 , a storage device 920 , an input/output interface 930 , an interrupt timer 160 , and a clock timer 170 .
  • the storage device 920 includes a memory 921 and an auxiliary storage device 922 .
  • the computer apparatus 100 includes, as functional components, an OS-dependent interrupt processing unit 110 , an OS-independent interrupt processing unit 130 , an OS execution unit 120 , and a storage unit 140 .
  • the OS-dependent interrupt processing unit 110 includes a task initiation determination unit 111 , a system time management unit 112 , a timeout processing unit 113 , and a timeout setting unit 114 .
  • the OS-independent interrupt processing unit 130 includes a task initiation request unit 131 and a timer setting unit 132 .
  • the OS-dependent interrupt processing unit 110 is an OS-dependent interrupt handler.
  • the OS-independent interrupt processing unit 130 is an OS-independent interrupt handler.
  • the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , and the timeout setting unit 114 are called by the OS-dependent interrupt processing unit 110 which is the OS-dependent interrupt handler.
  • the task initiation request unit 131 and the timer setting unit 132 are called by the OS-independent interrupt processing unit 130 which is the OS-independent interrupt handler.
  • the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 are realized by software.
  • the storage unit 140 is realized by the memory 921 and the auxiliary storage device 922 .
  • the storage unit 140 may also be realized solely by the memory 921 or solely by the auxiliary storage device 922 .
  • the storage unit 140 may be realized by any method.
  • a flag 141 , a previous execution time Tp, and a timeout queue 143 are stored in the memory 921 .
  • a remaining time 144 is set in the timeout queue 143 .
  • a task 145 is stored in the auxiliary storage device 922 .
  • the processor 910 is connected with other hardware components with signal lines and controls these hardware components.
  • the processor 910 is an integrated circuit (IC) that performs arithmetic processing.
  • the processor 910 is a central processing unit (CPU) or a microprocessing unit (MPU).
  • the auxiliary storage device 922 is a read only memory (ROM), a flash memory, or a hard disk drive (HDD).
  • the memory 921 is a random access memory (RAM).
  • the input/output interface 930 functions as an input interface and also functions as an output interface.
  • the input/output interface 930 When functioning as the input interface, the input/output interface 930 is a port which is connected with an input device, such as a mouse, a keyboard, or a touch panel. Specifically, the input/output interface 930 is a Universal Serial Bus (USB) terminal. The input/output interface 930 may also be a port which is connected with a local area network (LAN). The input/output interface 930 is connected with the device 200 and accepts the OS-independent interrupt 201 from the device 200 .
  • USB Universal Serial Bus
  • LAN local area network
  • the input/output interface 930 is a port to which a cable of a display device, such as a display, is connected.
  • the output interface is a USB terminal or a High Definition Multimedia Interface (HDMI) (registered trademark) terminal.
  • the display is a liquid crystal display (LCD).
  • the auxiliary storage device 922 stores a program for realizing the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 .
  • the program for realizing the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 is also referred to as a task initiation program 520 .
  • This program is loaded into the memory 921 , read by the processor 910 , and executed by the processor 910 .
  • the auxiliary storage device 922 also stores an OS. At least part of the OS is loaded into the memory 921 . Then, the processor 910 executes the task initiation program 520 while executing the OS.
  • the task 145 is initiated by a service call that the OS provides using the interrupt timer 160 .
  • the computer apparatus 100 may include only one processor 910 , or may include a plurality of processors 910 .
  • the plurality of processors 910 may cooperate to execute the program for realizing the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 .
  • Information, data, signal values, and variable values indicating results of processing by the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 are stored in the auxiliary storage device 922 and the memory 921 of the computer apparatus 100 , or in a register or a cache memory in the processor 910 .
  • the program for realizing the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 may be stored in a portable recording medium, such as a magnetic disk, a flexible disk, an optical disc, a compact disc, a Blu-ray (registered trademark) disc, and a digital versatile disc (DVD).
  • a portable recording medium such as a magnetic disk, a flexible disk, an optical disc, a compact disc, a Blu-ray (registered trademark) disc, and a digital versatile disc (DVD).
  • a task initiation program product is a storage medium or a storage device in which the task initiation program 520 is recorded.
  • the task initiation program product refers to an object into which a computer-readable program has been loaded, regardless of appearance.
  • FIG. 1 The functional components in FIG. 1 will now be described.
  • the OS execution unit 120 manages execution of the task 145 in the computer apparatus 100 .
  • the OS execution unit 120 also provides a function of initiating the task 145 in the computer apparatus 100 .
  • the device 200 generates an OS-independent interrupt 201 due to a state change including completion of an operation or an error.
  • the interrupt timer 160 is used to cause the OS execution unit 120 to generate an OS-dependent interrupt 202 . That is, the OS-dependent interrupt 202 is generated by the function of the interrupt timer 160 .
  • the interrupt timer 160 is also referred to as a system clock interrupt timer.
  • the clock timer 170 is a timer for keeping track of the system time.
  • the clock timer 170 is also referred to as a system time clock timer.
  • the clock timer 170 is a timer using a free-running timer function.
  • the task initiation request unit 131 determines whether or not to initiate the task 145 .
  • the task initiation request unit 131 turns on the flag 141 and causes the OS execution unit 120 to generate the OS-dependent interrupt 202 .
  • the task 145 is any task managed by the OS. Turning on the flag 141 means setting the flag, specifically, setting the value thereof to “1”.
  • the flag 141 is configured with a data structure that allows determination of a corresponding device 200 when the flag 141 is set by the task initiation request unit 131 .
  • the data structure of the flag 141 also allows determination of a task 145 to be initiated when there are a plurality of tasks 145 .
  • the flag 141 is also referred to as a notification request flag.
  • an element number and a flag value are associated with each other in the flag 141 .
  • an element number is associated with a device in advance.
  • the flag value of the element number corresponding to the device is set to “1”.
  • FIG. 3 is a diagram illustrating correspondence between element numbers and flag values in the flag 141 according to this embodiment. As illustrated in FIG. 3 , when the flag value corresponding to an element number is “0”, this means that there is no notification request for the device associated with the element number. When the flag value corresponding to an element number is “1”, this means that there is a notification request for the device associated with the element number.
  • the configuration of the flag 141 as described above allows the task initiation determination unit 111 to identify a device that the notification request concerns and to initiate an appropriate task.
  • the timer setting unit 132 causes the OS execution unit 120 to generate the OS-dependent interrupt 202 by setting a counter value in the interrupt timer 160 . Specifically, the timer setting unit 132 sets a value that causes the counter value to become 0 immediately, such as 0 ms, 1 ms, or 0.5 ms, in the interrupt timer 160 as the counter value.
  • the OS execution unit 120 generates the OS-dependent interrupt 202 using the interrupt timer 160 . Specifically, the OS execution unit 120 generates the OS-dependent interrupt 202 when the counter value of the interrupt timer 160 becomes 0.
  • the task initiation determination unit 111 determines whether or not the flag 141 is on. If the flag 141 is on, the task initiation determination unit 111 initiates the task 145 and turns off the flag 141 . Turning off the flag 141 means lowering the flag, specifically, setting the value thereof to “0”. That is, based on the state of the flag 141 , the task initiation determination unit 111 initiates the task 145 and turns off the flag 141 . Specifically, “0” is set in the flag 141 .
  • the system time management unit 112 calculates an elapsed time based on the current time which is the current system time obtained from the clock timer 170 and the previous execution time Tp which is the system time last obtained.
  • the timeout processing unit 113 performs a timeout process of a task or a timer event handler.
  • the computer apparatus 100 includes the timeout queue 143 that manages the remaining time 144 of the task or the timer event handler.
  • the timeout processing unit 113 resets the remaining time 144 of the timeout queue 143 based on the previous execution time Tp at which the task was last initiated and the current time.
  • the timer event handler is a handler such as a cyclic handler or an alarm handler in a real-time OS based on the ⁇ ITRON specification.
  • the timeout setting unit 114 manages a timeout queue of a task or a timer event handler queue.
  • the timeout queue 143 means the timeout queue of the task or the timer event handler queue.
  • the timeout setting unit 114 calculates a next interrupt time to generate the OS-dependent interrupt 202 , and sets a counter value in the interrupt timer 160 so as to generate the OS-dependent interrupt 202 at the next interrupt time.
  • FIG. 4 is a flowchart illustrating a task initiation process S 100 of a task initiation method 510 and the task initiation program 520 of the computer apparatus 100 according to this embodiment.
  • the task initiation program 520 causes the computer apparatus 100 , which is a computer, to execute each process to be described below.
  • the task initiation process S 100 includes an OS-dependent interrupt process S 10 and an OS-independent interrupt process S 20 .
  • step S 1 if the OS-dependent interrupt 202 has occurred, the computer apparatus 100 proceeds to the OS-dependent interrupt process S 10 . If the
  • the computer apparatus 100 proceeds to the OS-independent interrupt process S 20 . If no interrupt has occurred, the computer apparatus 100 repeats step S 1 .
  • FIG. 5 is a flowchart illustrating the OS-dependent interrupt process S 10 according to this embodiment.
  • the OS-dependent interrupt process S 10 is started when the OS-dependent interrupt 202 is caused to occur by the interrupt timer 160 of the system clock.
  • the OS-dependent interrupt handler is initiated by the interrupt function of the OS execution unit 120 of the processor 910 . Then, the OS-dependent interrupt handler calls the task initiation determination unit 111 .
  • the OS-dependent interrupt processing unit 110 determines whether or not the flag 141 is on. If the flag 141 is on, the OS-dependent interrupt processing unit 110 initiates the task 145 and turns off the flag 141 .
  • step S 11 the task initiation determination unit 111 determines whether or not the flag 141 is set. If the flag 141 is set, the process proceeds to step S 12 . If the flag 141 is off, the process proceeds to step S 13 .
  • step S 12 the task initiation determination unit 111 initiates the task 145 to be executed using a service call provided by the OS, and turns off the flag 141 .
  • the process proceeds to step S 13 which is executed by the system time management unit 112 .
  • step S 13 the system time management unit 112 obtains the current system time as an execution time Tn from the clock timer 170 of the system time.
  • step S 14 the system time management unit 112 obtains the previous execution time Tp previously stored in the storage unit 140 when the previous interrupt occurred.
  • the system time management unit 112 compares the previous execution time Tp with the execution time Tn, and calculates an elapsed time Tk from the previous execution time Tp to the execution time Tn.
  • the previous execution time Tp has an initial value of 0.
  • the process proceeds to step S 15 which is executed by the timeout processing unit 113 .
  • step S 15 the timeout processing unit 113 performs the timeout process of the task or the alarm handler based on the elapsed time Tk calculated by the system time management unit 112 .
  • the process proceeds to step S 16 which is executed by the timeout setting unit 114 .
  • step S 16 the timeout setting unit 114 stores the execution time Tn obtained by the system time management unit 112 in the storage unit 140 as the previous execution time Tp.
  • step S 17 the timeout setting unit 114 checks the remaining time 144 set in the head element of each timeout queue 143 , and determines a next interrupt time Tf based on the smallest remaining time 144 .
  • step S 18 the timeout setting unit 114 sets the counter value of the interrupt timer 160 so that an interrupt of the interrupt timer 160 of the system clock occurs at the next interrupt time Tf.
  • FIG. 6 is a flowchart illustrating the OS-independent interrupt process S 20 according to this embodiment.
  • a task initiation request process S 21 when the OS-independent interrupt 201 occurs from the device 200 , the OS-independent interrupt handler is initiated. Then, the OS-independent interrupt handler calls the task initiation request unit 131 .
  • the OS-independent interrupt processing unit 130 determines whether or not to initiate the task 145 . If the task 145 is to be initiated, the OS-independent interrupt processing unit 130 turns on the flag 141 , and causes the OS execution unit 120 to generate the OS-dependent interrupt 202 .
  • step S 21 the task initiation request unit 131 determines whether or not the task 145 needs to be initiated.
  • the task initiation request unit 131 may determine whether or not the task 145 needs to be initiated based on any condition. If the task 145 needs to be initiated, the process proceeds to step S 22 . If the task 145 does not need to be initiated, the process terminates.
  • step S 22 the task initiation request unit 131 sets the flag 141 .
  • step S 23 which is executed by the timer setting unit 132 .
  • step S 23 the timer setting unit 132 overwrites the counter value of the interrupt timer 160 so that the OS-dependent interrupt 202 occurs immediately. Specifically, the timer setting unit 132 sets the interrupt timer 160 to a counter value, such as 0 ms, 1 ms, or 2 ms, so that the OS-dependent interrupt 202 occurs immediately.
  • the counter value of the interrupt timer 160 set by the timer setting unit 132 may be dynamically determined in accordance with any condition. Specifically, if the elapsed time since the time when the counter value was last overwritten is short, the timer setting unit 132 may intentionally set a large counter value. Alternatively, the timer setting unit 132 may omit to perform overwriting of the counter value. Such setting of the counter value may be provided as part of the function of the timer setting unit 132 . Alternatively, a processing unit for determining whether or not to decide a counter value may perform setting of the counter value. Alternatively, a processing unit for determining whether or not to rewrite the counter value may perform setting of the counter value.
  • the task initiation determination unit 111 determines whether or not a task needs to be initiated in the process of an OS-dependent interrupt that occurs in connection with a timer interrupt. However, the task initiation determination unit 111 may determine whether or not a task needs to be initiated in the process of an interrupt that occurs due to a different factor.
  • FIG. 7 illustrates interrupt occurrence timing which is assumed in this specific example. It is illustrated that a period of 10 ms is set in the interrupt timer 160 , and the OS-independent interrupt 201 occurs at a time point T 1 which is 3 ms after the start point of the period.
  • the OS-dependent interrupt 202 is denoted as kernel_int and the OS-independent interrupt 201 is denoted as nonkernel_int.
  • FIG. 8 illustrates a timeout queue and task management information.
  • the task management information is denoted as TCB (Task Control Block).
  • the timeout queue is information in which TCBs are concatenated in order of timeout. Based on the remaining time of the timeout queue, the OS refers to the content of a corresponding TCB at the timing set as requiring execution of the task so as to execute the process of the task.
  • FIG. 9 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which only an OS-dependent interrupt occurs.
  • a specific example of the process from step S 15 to step S 18 in FIG. 5 in the case in which only an OS-dependent interrupt occurs will be described with reference to FIG. 9 .
  • ( 11 ) to ( 13 ) correspond to ( 11 ) to ( 13 ) illustrated in FIG. 9 .
  • the timeout processing unit 113 updates the address pointed to by the head pointer of the timeout queue to the next element. As illustrated in ( 12 ) of FIG. 9 , the timeout processing unit 113 changes the address pointed to by the head pointer of the timeout queue from the address of element 0 to the address of element 1.
  • step S 16 the timeout processing unit 113 stores the execution time Tn in the storage unit 140 as the previous execution time Tp.
  • step S 17 the timeout processing unit 113 determines the next interrupt time Tf.
  • step S 18 the timeout processing unit 113 sets a counter value in the interrupt timer 160 .
  • the counter value of the interrupt timer 160 is set so that an OS-dependent interrupt occurs at the next interrupt time Tf.
  • the timeout processing unit 113 sets 7 ms in the interrupt timer 160 .
  • FIG. 10 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which an OS-independent interrupt occurs at a time point T 1 which is 3 ms after the start point of the period following the process in FIG. 9 .
  • step S 15 to step S 18 in FIG. 5 A specific example of the process from step S 15 to step S 18 in FIG. 5 in the case in which an OS-independent interrupt occurs at the time point T 1 will be described with reference to FIG. 10 .
  • ( 21 ) to ( 23 ) correspond to ( 21 ) to ( 23 ) in FIG. 10 .
  • the elapsed time Tk from the start point of the period is 3 ms.
  • step S 16 the timeout processing unit 113 stores the execution time Tn in the storage unit 140 as the previous execution time Tp.
  • step S 17 the timeout processing unit 113 determines the next interrupt time Tf.
  • step S 18 the timeout processing unit 113 sets a counter value in the interrupt timer 160 .
  • the counter value is set in the interrupt timer 160 so that an OS-dependent interrupt occurs at the next interrupt time Tf.
  • the timeout processing unit 113 sets 4 ms in the interrupt timer 160 .
  • the computer apparatus 100 may include a communication device.
  • the communication device includes a receiver and a transmitter.
  • the communication device is a communication chip or a network interface card (NIC).
  • the communication device functions as a communication unit that communicates data.
  • the receiver functions as a receiving unit that receives data
  • the transmitter functions as a transmitting unit that transmits data.
  • the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 are realized by software.
  • the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 may be realized by hardware.
  • a configuration of a computer apparatus 100 according to the modification example of this embodiment will be described with reference to FIG. 11 .
  • the computer apparatus 100 includes hardware, such as a processing circuit 909 , an input/output interface 930 , an interrupt timer 160 , and a clock timer 170 .
  • hardware such as a processing circuit 909 , an input/output interface 930 , an interrupt timer 160 , and a clock timer 170 .
  • the processing circuit 909 is a dedicated electronic circuit that realizes the storage unit 140 and the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 described above.
  • the processing circuit 909 is a single circuit, a composite circuit, a programmed processor, a parallel programmed processor, a logic IC, a GA, an ASIC, or an FPGA.
  • GA is an abbreviation for Gate Array.
  • ASIC is an abbreviation for Application Specific Integrated Circuit.
  • FPGA is an abbreviation for Field-Programmable Gate Array.
  • the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 may be realized by a single processing circuit 909 , or may be realized by being distributed among a plurality of processing circuits 909 .
  • the functions of the computer apparatus 100 may be realized by a combination of software and hardware. That is, one or more of the functions of the computer apparatus 100 may be realized by dedicated hardware, and the rest of the functions may be realized by software.
  • the processor 910 , the storage device 920 , and the processing circuit 909 of the computer apparatus 100 are collectively referred to as “processing circuitry”. That is, regardless of whether the configuration of the computer apparatus 100 is the configuration illustrated in FIG. 1 or FIG. 11 , the storage unit 140 and the functions of the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 are realized by the processing circuitry.
  • a “unit” may be replaced with a “step”, “procedure” or “process”.
  • the function of a “unit” may be realized by firmware.
  • a flag is set and an OS-dependent interrupt is generated. Therefore, it is possible to initiate a task at any time without monitoring the flag with a periodic OS-dependent interrupt.
  • the computer apparatus 100 of this embodiment it is possible to adopt the tickless timer method as the time management method of the OS and to reduce CPU utilization and power consumption.
  • an OS-dependent interrupt can be generated and a task can be initiated earlier than the time set by the timeout setting unit.
  • the system time management unit that manages the system time is provided. Therefore, according to the computer apparatus 100 of this embodiment, even when the counter value of the interrupt timer is overwritten by the timer setting unit, it is possible to have the task and the alarm handler operate at the correct time. Furthermore, the computer apparatus 100 of this embodiment includes the timeout setting unit that manages the timeout queue of the task and the event handler queue and sets the counter value of the interrupt timer. Therefore, according to the computer apparatus 100 of this embodiment, even when the counter value of the interrupt timer is overwritten by the timer setting unit, it is possible to have an OS-dependent interrupt operate at the correct time.
  • the task initiation determination unit 111 , the system time management unit 112 , the timeout processing unit 113 , the timeout setting unit 114 , the task initiation request unit 131 , the timer setting unit 132 , and the OS execution unit 120 constitute the computer apparatus 100 as independent functional blocks.
  • the computer apparatus 100 may have any configuration.
  • the functional blocks of the computer apparatus 100 may be any functional blocks as long as the functions described in the above embodiment can be realized.
  • the computer apparatus may be constituted by any other combination of these functional blocks.
  • the computer apparatus may also be constituted by any block configurations of these functional blocks.
  • the computer apparatus may be a single apparatus or may be a computer system constituted by a plurality of apparatuses.
  • the first embodiment has been described. A plurality of portions of this embodiment may be implemented in combination. Alternatively, one portion of this embodiment may be implemented. Alternatively, a plurality of portions of this embodiment may be implemented as a whole or partially in any combination.
  • 100 computer apparatus, 110 : OS-dependent interrupt processing unit, 130 : OS-independent interrupt processing unit, 120 : OS execution unit, 140 : storage unit, 111 : task initiation determination unit, 112 : system time management unit, 113 : timeout processing unit, 114 : timeout setting unit, 131 : task initiation request unit, 132 : timer setting unit, 141 : flag, 143 : timeout queue, 144 : remaining time, 145 : task, 160 : interrupt timer, 170 : clock timer, 200 : device, 210 : motor, 220 : sensor, 201 : OS-independent interrupt, 202 : OS-dependent interrupt, 510 : task initiation method, 520 : task initiation program, S 10 : OS-dependent interrupt process, S 20 : OS-independent interrupt process, S 100 : task initiation process, Tp: previous execution time, Tn: execution time, Tf: next interrupt time, Tk: elapsed time, 909 : task

Abstract

A computer apparatus (100) includes an OS execution unit (120), an OS-dependent interrupt processing unit (110), and an OS-independent interrupt processing unit (130). When an OS-independent interrupt (201) due to a state of a device (200) occurs, the OS-independent interrupt processing unit (130) determines whether or not to initiate a task (145). When the task (145) is to be initiated, the OS-independent interrupt processing unit (130) turns on the flag (141) and causes the OS execution unit (120) to generate an OS-dependent interrupt (202). When the OS-dependent interrupt (202) is generated, the OS-dependent interrupt processing unit (110) determines whether or not the flag (141) is on, and when the flag (141) is on, initiates the task (145) and turns off the flag (141).

Description

TECHNICAL FIELD
The present invention relates to a computer apparatus, a task initiation program, and a task initiation method.
BACKGROUND ART
Non-Patent Literature 1 discloses a computer system using a real-time operating system (OS) for embedded devices. The computer system of Non-Patent Literature 1 has two types of interrupt handlers: a kernel-managed interrupt handler which is dependent on the OS and a non-kernel-managed interrupt handler which is independent of the OS. The kernel-managed interrupt handler is also referred to as an OS-dependent interrupt handler. The non-kernel-managed interrupt handler is also referred to as an OS-independent interrupt handler.
The OS-dependent interrupt handler can issue an OS service call within the OS-dependent interrupt handler. However, an OS-dependent interrupt generated while the service call is being processed is delayed until the OS-dependent interrupt can be accepted.
The OS-independent interrupt handler cannot issue an OS service call within the OS-independent interrupt handler. However, an OS-independent interrupt generated while a service call is being processed can be accepted even in a section where OS-dependent interrupts cannot be accepted.
CITATION LIST
Patent Literature
Patent Literature 1: JP 2001-092676 A
Non-Patent Literature
Non-Patent Literature 1: M3T-MR30/4 V.4.01 Users Manual (3.6 Interrupts)
Non-Patent Literature 2: Mitsubishi Electric Technical Report, February 2003, “Third-Generation Mobile Phone Technology” (Feature Article: Basic Software for W-CDMA Portable Devices)
SUMMARY OF INVENTION
Technical Problem
In small embedded devices such as household electric appliances and motor control, when a delay of an interrupt as a result of using an OS-dependent interrupt cannot be tolerated, it is necessary to use an OS-independent interrupt.
Accordingly, there is a technique in which an OS-independent interrupt handler initiates a process of a task managed by the OS via an OS-dependent interrupt handler. Specifically, as in Patent Literature 1, there is a technique in which an OS-dependent interrupt generated using a periodic timer interrupt is used to monitor the state of a flag to be updated when a task is to be initiated by an OS-independent interrupt, so as to initiate the task as necessary.
However, with the technique of Patent Literature 1, OS-dependent interrupts need to be generated regularly even when the flag is not set, that is, even when there is no need to initiate the task. Therefore, the utilization of a central processing unit (CPU) is wasted.
In addition, since OS-dependent interrupts must always be generated periodically, a tickless timer method disclosed in Non-Patent Literature 2 cannot be adopted, and the power consumption of a computer apparatus is wasted. The tickless timer method is a method in which system clock interrupts can be generated only when necessary.
It is an object of the present invention to adopt the tickless timer method as a time management method of the OS and to initiate a task managed by the OS from an OS-independent interrupt handler via a non-periodic OS-dependent interrupt handler.
Solution to Problem
A computer apparatus according to the present invention is connected with a device and includes an OS execution unit to execute an operating system (OS) and generate an OS-dependent interrupt, and the computer apparatus includes:
    • a storage unit to store a flag;
    • an OS-independent interrupt processing unit to, when an OS-independent interrupt due to a state of the device occurs, determine whether or not to initiate a task, and when the task is to be initiated, turn on the flag and cause the OS execution unit to generate the OS-dependent interrupt; and
    • an OS-dependent interrupt processing unit to, when the OS-dependent interrupt is generated by the OS execution unit, determine whether or not the flag is on, and when the flag is on, initiate the task and turn off the flag.
      Advantageous Effects of Invention
In a computer apparatus according to the present invention, when an OS-independent interrupt occurs, an OS-independent interrupt processing unit determines whether or not to initiate a task, and when the task is to be initiated, turns on the flag and causes an OS execution unit to generate an OS-dependent interrupt. When the OS-dependent interrupt is generated, an OS-dependent interrupt processing unit determines whether or not the flag is on, and when the flag is on, initiates the task and turns off the flag. Therefore, according to the computer apparatus of the present invention, it is possible to generate an OS-dependent interrupt irregularly upon occurrence of an OS-independent interrupt and to initiate a task by the OS-dependent interrupt processing unit. Hence, CPU utilization can be enhanced and power consumption can be reduced.
BRIEF DESCRIPTION OF DRAWINGS
FIG. 1 is a configuration diagram of a computer apparatus 100 according to a first embodiment;
FIG. 2 is an example configuration of an array of a flag 141 according to the first embodiment;
FIG. 3 is a diagram of correspondence between element numbers and flag values of the flag 141 according to the first embodiment;
FIG. 4 is a flowchart illustrating a task initiation process S100 of a task initiation method 510 and a task initiation program 520 of the computer apparatus 100 according to the first embodiment;
FIG. 5 is a flowchart illustrating an OS-dependent interrupt process S10 according to the first embodiment;
FIG. 6 is a flowchart illustrating an OS-independent interrupt process S20 according to the first embodiment;
FIG. 7 is a diagram illustrating interrupt occurrence timing which is assumed in a specific example of the OS-dependent interrupt process S10 according to the first embodiment;
FIG. 8 is a diagram illustrating a timeout queue and task management information which correspond to FIG. 7;
FIG. 9 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which only an OS-dependent interrupt occurs;
FIG. 10 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which an OS-independent interrupt occurs at a time point T1 which is 3 ms after the start point of a period following the process in FIG. 9; and
FIG. 11 is a configuration diagram of a computer apparatus 100 according to a modification example of the first embodiment.
DESCRIPTION OF EMBODIMENTS
An embodiment of the present invention will be described hereinafter with reference to the drawings. Throughout the drawings, the same or corresponding parts are denoted by the same reference sings. In the description of the embodiment, description of the same or corresponding parts will be omitted or simplified as appropriate.
First Embodiment
Description of Configuration
A configuration of a computer apparatus 100 according to this embodiment will be described with reference to FIG. 1.
The computer apparatus 100 is connected with a device 200. The device 200 generates an OS-independent interrupt 201 due to a state of the device 200. Specifically, the device 200 is a motor 210 or a sensor 220. The device 200, such as the motor 210 or the sensor 220, generates an interrupt due to a state change including completion of an operation or an error as the OS-independent interrupt 201. Instead of having the device 200 generate the OS-independent interrupt 201, the computer apparatus 100 may use a timer to periodically generate OS-independent interrupts so as to monitor changes in the state of the device 200.
As illustrated in FIG. 1, the computer apparatus 100 is a computer.
The computer apparatus 100 includes hardware, such as a processor 910, a storage device 920, an input/output interface 930, an interrupt timer 160, and a clock timer 170. The storage device 920 includes a memory 921 and an auxiliary storage device 922.
The computer apparatus 100 includes, as functional components, an OS-dependent interrupt processing unit 110, an OS-independent interrupt processing unit 130, an OS execution unit 120, and a storage unit 140. The OS-dependent interrupt processing unit 110 includes a task initiation determination unit 111, a system time management unit 112, a timeout processing unit 113, and a timeout setting unit 114. The OS-independent interrupt processing unit 130 includes a task initiation request unit 131 and a timer setting unit 132.
The OS-dependent interrupt processing unit 110 is an OS-dependent interrupt handler. The OS-independent interrupt processing unit 130 is an OS-independent interrupt handler.
The task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, and the timeout setting unit 114 are called by the OS-dependent interrupt processing unit 110 which is the OS-dependent interrupt handler. The task initiation request unit 131 and the timer setting unit 132 are called by the OS-independent interrupt processing unit 130 which is the OS-independent interrupt handler.
The functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 are realized by software.
The storage unit 140 is realized by the memory 921 and the auxiliary storage device 922. The storage unit 140 may also be realized solely by the memory 921 or solely by the auxiliary storage device 922. The storage unit 140 may be realized by any method. A flag 141, a previous execution time Tp, and a timeout queue 143 are stored in the memory 921. A remaining time 144 is set in the timeout queue 143. A task 145 is stored in the auxiliary storage device 922.
The processor 910 is connected with other hardware components with signal lines and controls these hardware components. The processor 910 is an integrated circuit (IC) that performs arithmetic processing. The processor 910 is a central processing unit (CPU) or a microprocessing unit (MPU).
Specifically, the auxiliary storage device 922 is a read only memory (ROM), a flash memory, or a hard disk drive (HDD). Specifically, the memory 921 is a random access memory (RAM).
The input/output interface 930 functions as an input interface and also functions as an output interface.
When functioning as the input interface, the input/output interface 930 is a port which is connected with an input device, such as a mouse, a keyboard, or a touch panel. Specifically, the input/output interface 930 is a Universal Serial Bus (USB) terminal. The input/output interface 930 may also be a port which is connected with a local area network (LAN). The input/output interface 930 is connected with the device 200 and accepts the OS-independent interrupt 201 from the device 200.
When functioning as the output interface, the input/output interface 930 is a port to which a cable of a display device, such as a display, is connected. Specifically, the output interface is a USB terminal or a High Definition Multimedia Interface (HDMI) (registered trademark) terminal. Specifically, the display is a liquid crystal display (LCD).
The auxiliary storage device 922 stores a program for realizing the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120. The program for realizing the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 is also referred to as a task initiation program 520. This program is loaded into the memory 921, read by the processor 910, and executed by the processor 910. The auxiliary storage device 922 also stores an OS. At least part of the OS is loaded into the memory 921. Then, the processor 910 executes the task initiation program 520 while executing the OS. The task 145 is initiated by a service call that the OS provides using the interrupt timer 160.
The computer apparatus 100 may include only one processor 910, or may include a plurality of processors 910. The plurality of processors 910 may cooperate to execute the program for realizing the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120.
Information, data, signal values, and variable values indicating results of processing by the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 are stored in the auxiliary storage device 922 and the memory 921 of the computer apparatus 100, or in a register or a cache memory in the processor 910.
The program for realizing the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 may be stored in a portable recording medium, such as a magnetic disk, a flexible disk, an optical disc, a compact disc, a Blu-ray (registered trademark) disc, and a digital versatile disc (DVD).
Note that a task initiation program product is a storage medium or a storage device in which the task initiation program 520 is recorded. The task initiation program product refers to an object into which a computer-readable program has been loaded, regardless of appearance.
Description of Functional Components
The functional components in FIG. 1 will now be described.
The OS execution unit 120 manages execution of the task 145 in the computer apparatus 100. The OS execution unit 120 also provides a function of initiating the task 145 in the computer apparatus 100.
The device 200 generates an OS-independent interrupt 201 due to a state change including completion of an operation or an error.
The interrupt timer 160 is used to cause the OS execution unit 120 to generate an OS-dependent interrupt 202. That is, the OS-dependent interrupt 202 is generated by the function of the interrupt timer 160. The interrupt timer 160 is also referred to as a system clock interrupt timer.
The clock timer 170 is a timer for keeping track of the system time. The clock timer 170 is also referred to as a system time clock timer. Specifically, the clock timer 170 is a timer using a free-running timer function.
When the OS-independent interrupt 201 due to the state of the device 200 occurs, the task initiation request unit 131 determines whether or not to initiate the task 145. When the task 145 is to be initiated, the task initiation request unit 131 turns on the flag 141 and causes the OS execution unit 120 to generate the OS-dependent interrupt 202. The task 145 is any task managed by the OS. Turning on the flag 141 means setting the flag, specifically, setting the value thereof to “1”.
The flag 141 is configured with a data structure that allows determination of a corresponding device 200 when the flag 141 is set by the task initiation request unit 131. The data structure of the flag 141 also allows determination of a task 145 to be initiated when there are a plurality of tasks 145. There may be a plurality of flags 141. The flag 141 is also referred to as a notification request flag.
An example configuration of an array of the flag 141 according to this embodiment will be described with reference to FIG. 2. As illustrated in FIG. 2, an element number and a flag value are associated with each other in the flag 141. Note that an element number is associated with a device in advance. When task initiation is required for a device, the flag value of the element number corresponding to the device is set to “1”.
FIG. 3 is a diagram illustrating correspondence between element numbers and flag values in the flag 141 according to this embodiment. As illustrated in FIG. 3, when the flag value corresponding to an element number is “0”, this means that there is no notification request for the device associated with the element number. When the flag value corresponding to an element number is “1”, this means that there is a notification request for the device associated with the element number.
The configuration of the flag 141 as described above allows the task initiation determination unit 111 to identify a device that the notification request concerns and to initiate an appropriate task.
The timer setting unit 132 causes the OS execution unit 120 to generate the OS-dependent interrupt 202 by setting a counter value in the interrupt timer 160. Specifically, the timer setting unit 132 sets a value that causes the counter value to become 0 immediately, such as 0 ms, 1 ms, or 0.5 ms, in the interrupt timer 160 as the counter value.
The OS execution unit 120 generates the OS-dependent interrupt 202 using the interrupt timer 160. Specifically, the OS execution unit 120 generates the OS-dependent interrupt 202 when the counter value of the interrupt timer 160 becomes 0.
When the OS-dependent interrupt 202 is generated by the OS execution unit 120, the task initiation determination unit 111 determines whether or not the flag 141 is on. If the flag 141 is on, the task initiation determination unit 111 initiates the task 145 and turns off the flag 141. Turning off the flag 141 means lowering the flag, specifically, setting the value thereof to “0”. That is, based on the state of the flag 141, the task initiation determination unit 111 initiates the task 145 and turns off the flag 141. Specifically, “0” is set in the flag 141.
The system time management unit 112 calculates an elapsed time based on the current time which is the current system time obtained from the clock timer 170 and the previous execution time Tp which is the system time last obtained.
The timeout processing unit 113 performs a timeout process of a task or a timer event handler. The computer apparatus 100 includes the timeout queue 143 that manages the remaining time 144 of the task or the timer event handler. The timeout processing unit 113 resets the remaining time 144 of the timeout queue 143 based on the previous execution time Tp at which the task was last initiated and the current time. Specifically, the timer event handler is a handler such as a cyclic handler or an alarm handler in a real-time OS based on the μITRON specification.
The timeout setting unit 114 manages a timeout queue of a task or a timer event handler queue. In the following, the timeout queue 143 means the timeout queue of the task or the timer event handler queue. The timeout setting unit 114 calculates a next interrupt time to generate the OS-dependent interrupt 202, and sets a counter value in the interrupt timer 160 so as to generate the OS-dependent interrupt 202 at the next interrupt time.
Description of Operation
FIG. 4 is a flowchart illustrating a task initiation process S100 of a task initiation method 510 and the task initiation program 520 of the computer apparatus 100 according to this embodiment. The task initiation program 520 causes the computer apparatus 100, which is a computer, to execute each process to be described below.
The task initiation process S100 includes an OS-dependent interrupt process S10 and an OS-independent interrupt process S20.
In step S1, if the OS-dependent interrupt 202 has occurred, the computer apparatus 100 proceeds to the OS-dependent interrupt process S10. If the
OS-independent interrupt 201 has occurred, the computer apparatus 100 proceeds to the OS-independent interrupt process S20. If no interrupt has occurred, the computer apparatus 100 repeats step S1.
<OS-Dependent Interrupt Process S10>
FIG. 5 is a flowchart illustrating the OS-dependent interrupt process S10 according to this embodiment.
The OS-dependent interrupt process S10 is started when the OS-dependent interrupt 202 is caused to occur by the interrupt timer 160 of the system clock. When the OS-dependent interrupt 202 is caused to occur by the interrupt timer 160, the OS-dependent interrupt handler is initiated by the interrupt function of the OS execution unit 120 of the processor 910. Then, the OS-dependent interrupt handler calls the task initiation determination unit 111.
In the OS-dependent interrupt process S10, when the OS-dependent interrupt 202 is generated by the OS execution unit 120, the OS-dependent interrupt processing unit 110 determines whether or not the flag 141 is on. If the flag 141 is on, the OS-dependent interrupt processing unit 110 initiates the task 145 and turns off the flag 141.
In step S11, the task initiation determination unit 111 determines whether or not the flag 141 is set. If the flag 141 is set, the process proceeds to step S12. If the flag 141 is off, the process proceeds to step S13.
In step S12, the task initiation determination unit 111 initiates the task 145 to be executed using a service call provided by the OS, and turns off the flag 141. The process proceeds to step S13 which is executed by the system time management unit 112.
Next, in step S13, the system time management unit 112 obtains the current system time as an execution time Tn from the clock timer 170 of the system time.
In step S14, the system time management unit 112 obtains the previous execution time Tp previously stored in the storage unit 140 when the previous interrupt occurred. The system time management unit 112 compares the previous execution time Tp with the execution time Tn, and calculates an elapsed time Tk from the previous execution time Tp to the execution time Tn. The previous execution time Tp has an initial value of 0. The process proceeds to step S15 which is executed by the timeout processing unit 113.
In step S15, the timeout processing unit 113 performs the timeout process of the task or the alarm handler based on the elapsed time Tk calculated by the system time management unit 112. A specific example of the timeout process will be described later. The process proceeds to step S16 which is executed by the timeout setting unit 114.
In step S16, the timeout setting unit 114 stores the execution time Tn obtained by the system time management unit 112 in the storage unit 140 as the previous execution time Tp.
Then, in step S17, the timeout setting unit 114 checks the remaining time 144 set in the head element of each timeout queue 143, and determines a next interrupt time Tf based on the smallest remaining time 144.
Finally, in step S18, the timeout setting unit 114 sets the counter value of the interrupt timer 160 so that an interrupt of the interrupt timer 160 of the system clock occurs at the next interrupt time Tf.
This concludes the OS-dependent interrupt process S10.
<OS-Independent Interrupt Process S20>
FIG. 6 is a flowchart illustrating the OS-independent interrupt process S20 according to this embodiment.
In a task initiation request process S21, when the OS-independent interrupt 201 occurs from the device 200, the OS-independent interrupt handler is initiated. Then, the OS-independent interrupt handler calls the task initiation request unit 131.
In the OS-independent interrupt process S20, when the OS-independent interrupt 201 due to the state of the device 200 occurs, the OS-independent interrupt processing unit 130 determines whether or not to initiate the task 145. If the task 145 is to be initiated, the OS-independent interrupt processing unit 130 turns on the flag 141, and causes the OS execution unit 120 to generate the OS-dependent interrupt 202.
In step S21, the task initiation request unit 131 determines whether or not the task 145 needs to be initiated. The task initiation request unit 131 may determine whether or not the task 145 needs to be initiated based on any condition. If the task 145 needs to be initiated, the process proceeds to step S22. If the task 145 does not need to be initiated, the process terminates.
In step S22, the task initiation request unit 131 sets the flag 141. The process proceeds to step S23 which is executed by the timer setting unit 132.
In step S23, the timer setting unit 132 overwrites the counter value of the interrupt timer 160 so that the OS-dependent interrupt 202 occurs immediately. Specifically, the timer setting unit 132 sets the interrupt timer 160 to a counter value, such as 0 ms, 1 ms, or 2 ms, so that the OS-dependent interrupt 202 occurs immediately.
This concludes the OS-independent interrupt process S20.
Note that the counter value of the interrupt timer 160 set by the timer setting unit 132 may be dynamically determined in accordance with any condition. Specifically, if the elapsed time since the time when the counter value was last overwritten is short, the timer setting unit 132 may intentionally set a large counter value. Alternatively, the timer setting unit 132 may omit to perform overwriting of the counter value. Such setting of the counter value may be provided as part of the function of the timer setting unit 132. Alternatively, a processing unit for determining whether or not to decide a counter value may perform setting of the counter value. Alternatively, a processing unit for determining whether or not to rewrite the counter value may perform setting of the counter value.
In this embodiment, the task initiation determination unit 111 determines whether or not a task needs to be initiated in the process of an OS-dependent interrupt that occurs in connection with a timer interrupt. However, the task initiation determination unit 111 may determine whether or not a task needs to be initiated in the process of an interrupt that occurs due to a different factor.
A specific example of the OS-dependent interrupt process S10 by the computer apparatus 100 according to this embodiment will now be described with reference to FIG. 7 to FIG. 10.
FIG. 7 illustrates interrupt occurrence timing which is assumed in this specific example. It is illustrated that a period of 10 ms is set in the interrupt timer 160, and the OS-independent interrupt 201 occurs at a time point T1 which is 3 ms after the start point of the period. In FIG. 7 to FIG. 10, the OS-dependent interrupt 202 is denoted as kernel_int and the OS-independent interrupt 201 is denoted as nonkernel_int.
FIG. 8 illustrates a timeout queue and task management information. The task management information is denoted as TCB (Task Control Block). The timeout queue is information in which TCBs are concatenated in order of timeout. Based on the remaining time of the timeout queue, the OS refers to the content of a corresponding TCB at the timing set as requiring execution of the task so as to execute the process of the task.
FIG. 9 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which only an OS-dependent interrupt occurs. A specific example of the process from step S15 to step S18 in FIG. 5 in the case in which only an OS-dependent interrupt occurs will be described with reference to FIG. 9. In the following, (11) to (13) correspond to (11) to (13) illustrated in FIG. 9.
In step S15, the timeout processing unit 113 checks whether or not there is a task whose execution time has passed. If there is a task whose execution time has passed, the timeout processing unit 113 causes the OS to execute the process of this task. If there is a task for which the remaining time—the elapsed time≤0, the timeout processing unit 113 causes the OS to execute the process of this task. As illustrated in (11) of FIG. 9, the remaining time at the head of the timeout queue is 10 ms and the elapsed time Tk is 10 ms, so that 10−10=0. Therefore, the timeout processing unit 113 causes the OS to execute the process of task 1. Then, the timeout processing unit 113 updates the address pointed to by the head pointer of the timeout queue to the next element. As illustrated in (12) of FIG. 9, the timeout processing unit 113 changes the address pointed to by the head pointer of the timeout queue from the address of element 0 to the address of element 1.
In step S16, the timeout processing unit 113 stores the execution time Tn in the storage unit 140 as the previous execution time Tp.
In step S17, the timeout processing unit 113 determines the next interrupt time Tf. There may be a plurality of timeout queues including a timeout queue for a timer event handler and a timeout queue for an alarm handler. Therefore, the timeout processing unit 113 compares the remaining times of the head blocks of all the timeout queues so as to determine the next interrupt time Tf.
In step S18, the timeout processing unit 113 sets a counter value in the interrupt timer 160. The counter value of the interrupt timer 160 is set so that an OS-dependent interrupt occurs at the next interrupt time Tf. As illustrated in (13) of FIG. 9, the timeout processing unit 113 sets 7 ms in the interrupt timer 160.
FIG. 10 is a diagram illustrating a specific example of the OS-dependent interrupt process in the case in which an OS-independent interrupt occurs at a time point T1 which is 3 ms after the start point of the period following the process in FIG. 9.
A specific example of the process from step S15 to step S18 in FIG. 5 in the case in which an OS-independent interrupt occurs at the time point T1 will be described with reference to FIG. 10. In the following, (21) to (23) correspond to (21) to (23) in FIG. 10. In the case of FIG. 10, the elapsed time Tk from the start point of the period is 3 ms.
In step S15, the timeout processing unit 113 checks whether or not there is a task whose execution time has passed. If there is a task whose execution time has passed, the timeout processing unit 113 causes the OS to execute the process of this task. If there is a task for which (the remaining time—the elapsed time)≤0, the timeout processing unit 113 causes the OS to execute the process of this task. As illustrated in (21) of FIG. 10, the remaining time at the head of the timeout queue is 7 ms and the elapsed time Tk is 3 ms, so that 7−3=4. Therefore, there is no task for the timeout processing unit 113 to execute. The timeout processing unit 113 updates the remaining time of the timeout queue. As illustrated in (22) of FIG. 10, Tk=3 ms has elapsed since the previous execution time Tp, so that the remaining time is updated from 7 ms to (7−3)=4 ms.
In step S16, the timeout processing unit 113 stores the execution time Tn in the storage unit 140 as the previous execution time Tp.
In step S17, the timeout processing unit 113 determines the next interrupt time Tf.
In step S18, the timeout processing unit 113 sets a counter value in the interrupt timer 160. The counter value is set in the interrupt timer 160 so that an OS-dependent interrupt occurs at the next interrupt time Tf. As illustrated in (23) of FIG. 10, the timeout processing unit 113 sets 4 ms in the interrupt timer 160.
This concludes the description of the specific example of the OS-dependent interrupt process S10 by the computer apparatus 100 according to this embodiment.
Other Configurations
The computer apparatus 100 may include a communication device. The communication device includes a receiver and a transmitter. Specifically, the communication device is a communication chip or a network interface card (NIC). The communication device functions as a communication unit that communicates data. The receiver functions as a receiving unit that receives data, and the transmitter functions as a transmitting unit that transmits data.
In this embodiment, the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 are realized by software. However, as a modification example, the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 may be realized by hardware.
A configuration of a computer apparatus 100 according to the modification example of this embodiment will be described with reference to FIG. 11.
As illustrated in FIG. 11, the computer apparatus 100 includes hardware, such as a processing circuit 909, an input/output interface 930, an interrupt timer 160, and a clock timer 170.
The processing circuit 909 is a dedicated electronic circuit that realizes the storage unit 140 and the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 described above. Specifically, the processing circuit 909 is a single circuit, a composite circuit, a programmed processor, a parallel programmed processor, a logic IC, a GA, an ASIC, or an FPGA. GA is an abbreviation for Gate Array. ASIC is an abbreviation for Application Specific Integrated Circuit. FPGA is an abbreviation for Field-Programmable Gate Array.
The functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 may be realized by a single processing circuit 909, or may be realized by being distributed among a plurality of processing circuits 909.
As another modification example, the functions of the computer apparatus 100 may be realized by a combination of software and hardware. That is, one or more of the functions of the computer apparatus 100 may be realized by dedicated hardware, and the rest of the functions may be realized by software.
The processor 910, the storage device 920, and the processing circuit 909 of the computer apparatus 100 are collectively referred to as “processing circuitry”. That is, regardless of whether the configuration of the computer apparatus 100 is the configuration illustrated in FIG. 1 or FIG. 11, the storage unit 140 and the functions of the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 are realized by the processing circuitry.
A “unit” may be replaced with a “step”, “procedure” or “process”. The function of a “unit” may be realized by firmware.
Description of Effects of This Embodiment
According to the computer apparatus 100 of this embodiment, a flag is set and an OS-dependent interrupt is generated. Therefore, it is possible to initiate a task at any time without monitoring the flag with a periodic OS-dependent interrupt. Hence, according to the computer apparatus 100 of this embodiment, it is possible to adopt the tickless timer method as the time management method of the OS and to reduce CPU utilization and power consumption. Furthermore, according to the computer apparatus 100 of this embodiment, there is no need to check the flag periodically, so that it is possible to respond to a notification request in the shortest time that can be set with the interrupt timer.
According to the computer apparatus 100 of this embodiment, an OS-dependent interrupt can be generated and a task can be initiated earlier than the time set by the timeout setting unit.
According to the computer apparatus 100 of this embodiment, the system time management unit that manages the system time is provided. Therefore, according to the computer apparatus 100 of this embodiment, even when the counter value of the interrupt timer is overwritten by the timer setting unit, it is possible to have the task and the alarm handler operate at the correct time. Furthermore, the computer apparatus 100 of this embodiment includes the timeout setting unit that manages the timeout queue of the task and the event handler queue and sets the counter value of the interrupt timer. Therefore, according to the computer apparatus 100 of this embodiment, even when the counter value of the interrupt timer is overwritten by the timer setting unit, it is possible to have an OS-dependent interrupt operate at the correct time.
In this embodiment, the task initiation determination unit 111, the system time management unit 112, the timeout processing unit 113, the timeout setting unit 114, the task initiation request unit 131, the timer setting unit 132, and the OS execution unit 120 constitute the computer apparatus 100 as independent functional blocks. However, it is not necessary to have the configuration as in the above-described embodiment, and the computer apparatus 100 may have any configuration. The functional blocks of the computer apparatus 100 may be any functional blocks as long as the functions described in the above embodiment can be realized. The computer apparatus may be constituted by any other combination of these functional blocks. The computer apparatus may also be constituted by any block configurations of these functional blocks.
The computer apparatus may be a single apparatus or may be a computer system constituted by a plurality of apparatuses.
The first embodiment has been described. A plurality of portions of this embodiment may be implemented in combination. Alternatively, one portion of this embodiment may be implemented. Alternatively, a plurality of portions of this embodiment may be implemented as a whole or partially in any combination.
The above-described embodiment is an essentially preferred example, and is not intended to limit the scope of the present invention and the scopes of applications and intended uses of the present invention, and various modifications are possible as necessary.
REFERENCE SIGNS LIST
100: computer apparatus, 110: OS-dependent interrupt processing unit, 130: OS-independent interrupt processing unit, 120: OS execution unit, 140: storage unit, 111: task initiation determination unit, 112: system time management unit, 113: timeout processing unit, 114: timeout setting unit, 131: task initiation request unit, 132: timer setting unit, 141: flag, 143: timeout queue, 144: remaining time, 145: task, 160: interrupt timer, 170: clock timer, 200: device, 210: motor, 220: sensor, 201: OS-independent interrupt, 202: OS-dependent interrupt, 510: task initiation method, 520: task initiation program, S10: OS-dependent interrupt process, S20: OS-independent interrupt process, S100: task initiation process, Tp: previous execution time, Tn: execution time, Tf: next interrupt time, Tk: elapsed time, 909: processing circuit, 910: processor, 920: storage device, 921: memory, 922: auxiliary storage device, 930: input/output interface

Claims (4)

The invention claimed is:
1. A computer apparatus to be connected with a device, the computer apparatus comprising:
processing circuitry to:
execute an operating system (OS) and generate an OS-dependent interrupt for initiating an OS-dependent task for which a remaining time is set in a timeout queue, the remaining time being a time until a next interrupt time at which a next OS-dependent task is to be initiated and being set as a counter value of an interrupt timer;
store a flag;
determine, when an OS-independent interrupt due to a state of the device occurs, whether or not to initiate an OS-independent task corresponding to the device, and when the OS-independent task is to be initiated, turn on the flag and generate the OS-dependent interrupt by overwriting the counter value of the interrupt timer;
determine, when the OS-dependent interrupt is generated, whether or not the flag is on, and when the flag is on, initiate the OS-independent task and turn off the flag; and
obtain, when the OS-independent task is initiated, a previous execution time which is a time at which a previous OS-dependent task has been initiated and a current time, calculate an elapsed time from the previous execution time to the current time, and based on the elapsed time and the remaining time of a head task to be executed first among OS-dependent tasks, reset the counter value of the interrupt timer such that the head task is executed at the next interrupt time.
2. The computer apparatus according to claim 1,
wherein when a value obtained by subtracting the elapsed time from the remaining time is greater than 0, the processing circuitry resets the counter value of the interrupt timer to the value obtained by subtracting the elapsed time from the remaining time, and when the value obtained by subtracting the elapsed time from the remaining time is equal to or less than 0, the processing circuitry resets the counter value of the interrupt timer such that the head task is executed immediately.
3. A task initiation method of a computer apparatus to be connected to a device and including processing circuitry to execute an operating system (OS) and generate an OS-dependent interrupt for initiating an OS-dependent task for which a remaining time is set in a timeout queue, the remaining time being a time until a next interrupt time at which a next OS-dependent task is to be initiated and being set as a counter value of an interrupt timer, the task initiation method comprising:
determining, when an OS-independent interrupt due to a state of the device occurs, whether or not to initiate an OS-independent task corresponding to the device, and when the OS-independent task is to be initiated, turning on a flag and causing the processing circuitry to generate the OS-dependent interrupt by overwriting the counter value of the interrupt timer;
determining, when the OS-dependent interrupt is generated by the processing circuitry, whether or not the flag is on, and when the flag is on, initiating the OS-independent task and turning off the flag, and
obtaining, when the OS-independent task is initiated, a previous execution time which is a time at which a previous OS-dependent task has been initiated and a current time, calculating an elapsed time from the previous execution time to the current time, and based on the elapsed time and the remaining time of a head task to be executed first among OS-dependent tasks, resetting the counter value of the interrupt timer such that the head task is executed at the next interrupt time.
4. A non-transitory computer readable medium storing a task initiation program for a computer apparatus to be connected to a device and including processing circuitry to execute an operating system (OS) and generate an OS-dependent interrupt for initiating an OS-dependent task for which a remaining time is set in a timeout queue, the remaining time being a time until a next interrupt time at which a next OS-dependent task is to be initiated and being set as a counter value of an interrupt timer, the task initiation program causing the computer apparatus, which is a computer, to execute:
an OS-independent interrupt process to, when an OS-independent interrupt due to a state of the device occurs, determine whether or not to initiate an OS-independent task corresponding to the device, and when the OS-independent task is to be initiated, turn on a flag and cause the processing circuitry to generate the OS-dependent interrupt by overwriting the counter value of the interrupt timer;
an OS-dependent interrupt process to, when the OS-dependent interrupt is generated by the processing circuitry, determine whether or not the flag is on, and when the flag is on, initiate the OS-independent task and turn off the flag; and
a process to, when the OS-independent task is initiated, obtain a previous execution time which is a time at which a previous OS-dependent task has been initiated and a current time, calculate an elapsed time from the previous execution time to the current time, and based on the elapsed time and the remaining time of a head task to be executed first among OS-dependent tasks, reset the counter value of the interrupt timer such that the head task is executed at the next interrupt time.
US16/466,180 2017-01-25 2017-01-25 Computer apparatus, task initiation method, and computer readable medium Active 2037-05-21 US10983823B2 (en)

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/JP2017/002498 WO2018138798A1 (en) 2017-01-25 2017-01-25 Computer device, task initiation method, and task initiation program

Publications (2)

Publication Number Publication Date
US20200004581A1 US20200004581A1 (en) 2020-01-02
US10983823B2 true US10983823B2 (en) 2021-04-20

Family

ID=62069404

Family Applications (1)

Application Number Title Priority Date Filing Date
US16/466,180 Active 2037-05-21 US10983823B2 (en) 2017-01-25 2017-01-25 Computer apparatus, task initiation method, and computer readable medium

Country Status (6)

Country Link
US (1) US10983823B2 (en)
JP (1) JP6316522B1 (en)
CN (1) CN110192183B (en)
DE (1) DE112017006454B4 (en)
TW (1) TW201828046A (en)
WO (1) WO2018138798A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20220055637A1 (en) * 2019-06-27 2022-02-24 Mitsubishi Electric Corporation Electronic control unit and computer readable medium

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113742059B (en) * 2021-07-15 2024-03-29 上海朋熙半导体有限公司 Task allocation method, device, computer equipment and storage medium

Citations (19)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH10143378A (en) 1996-11-15 1998-05-29 Mitsubishi Electric Corp Computer device, and preemption method of urgent process in the computer device
US5845133A (en) * 1995-07-06 1998-12-01 Cyrix Corporation Virtualized functions within a microprocessor
JPH1173330A (en) 1997-08-29 1999-03-16 Toshiba Corp Computer system
JPH11184712A (en) 1997-12-24 1999-07-09 Toshiba Corp Information processor
JP2000047880A (en) 1998-07-31 2000-02-18 Canon Inc Operating system and its time managing method, and information processor and storage medium
US6038632A (en) 1997-05-07 2000-03-14 Kabushiki Kaisha Toshiba Interrupt control on SMM
JP2001092676A (en) 1999-09-22 2001-04-06 Kenwood Corp Task management system in integrated program
US6466998B1 (en) * 1999-08-25 2002-10-15 Intel Corporation Interrupt routing mechanism for routing interrupts from peripheral bus to interrupt controller
US6600963B1 (en) * 1997-02-25 2003-07-29 Sextant Avionique Low cost modular architecture for piloting an aerodyne operating with high level of security
US20030221491A1 (en) * 2002-05-31 2003-12-04 Mykrolis Corporation System and method of operation of an embedded system for a digital capacitance diaphragm gauge
US20040088704A1 (en) 2002-10-30 2004-05-06 Advanced Simulation Technology, Inc. Method for running real-time tasks alongside a general purpose operating system
JP2004199393A (en) 2002-12-18 2004-07-15 Matsushita Electric Ind Co Ltd Task controller and task control method
US6792492B1 (en) 2001-04-11 2004-09-14 Novell, Inc. System and method of lowering overhead and latency needed to service operating system interrupts
US20050144347A1 (en) * 2003-12-25 2005-06-30 Akira Kitamura Apparatus and method for interrupt control
US20050167513A1 (en) 2004-02-04 2005-08-04 Sharp Kabushiki Kaisha IC card with built-in coprocessor for auxiliary arithmetic, and control method thereof
JP2008305351A (en) 2007-06-11 2008-12-18 Renesas Technology Corp Dispatch device
JP2009261865A (en) 2008-04-25 2009-11-12 Haruo Kitamura Japanese sandals braiding machine
US20150143010A1 (en) * 2013-11-18 2015-05-21 Electronics And Telecommunications Research Institute Method and apparatus for compensating for delay in real-time embedded system
JP2015225474A (en) 2014-05-27 2015-12-14 富士通株式会社 Information processing device and timer setting method

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH0795276B2 (en) * 1990-11-19 1995-10-11 株式会社東芝 Information processing equipment
JP4057769B2 (en) * 2000-08-31 2008-03-05 松下電器産業株式会社 Interrupt management device and interrupt management method
CN101639791B (en) * 2009-08-31 2012-12-05 浙江大学 Method for improving interruption delay of embedded type real-time operation system
CN103176841A (en) * 2013-03-06 2013-06-26 深圳市文鼎创数据科技有限公司 Implementation method and device for Tick clock of real time operating system (RTOS)

Patent Citations (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5845133A (en) * 1995-07-06 1998-12-01 Cyrix Corporation Virtualized functions within a microprocessor
JPH10143378A (en) 1996-11-15 1998-05-29 Mitsubishi Electric Corp Computer device, and preemption method of urgent process in the computer device
US6600963B1 (en) * 1997-02-25 2003-07-29 Sextant Avionique Low cost modular architecture for piloting an aerodyne operating with high level of security
US6038632A (en) 1997-05-07 2000-03-14 Kabushiki Kaisha Toshiba Interrupt control on SMM
JPH1173330A (en) 1997-08-29 1999-03-16 Toshiba Corp Computer system
JPH11184712A (en) 1997-12-24 1999-07-09 Toshiba Corp Information processor
US6223246B1 (en) 1997-12-24 2001-04-24 Kabushiki Kaisha Toshiba Computer system having an interrupt handler
JP2000047880A (en) 1998-07-31 2000-02-18 Canon Inc Operating system and its time managing method, and information processor and storage medium
US6466998B1 (en) * 1999-08-25 2002-10-15 Intel Corporation Interrupt routing mechanism for routing interrupts from peripheral bus to interrupt controller
JP2001092676A (en) 1999-09-22 2001-04-06 Kenwood Corp Task management system in integrated program
US6792492B1 (en) 2001-04-11 2004-09-14 Novell, Inc. System and method of lowering overhead and latency needed to service operating system interrupts
US20030221491A1 (en) * 2002-05-31 2003-12-04 Mykrolis Corporation System and method of operation of an embedded system for a digital capacitance diaphragm gauge
US20040088704A1 (en) 2002-10-30 2004-05-06 Advanced Simulation Technology, Inc. Method for running real-time tasks alongside a general purpose operating system
JP2004199393A (en) 2002-12-18 2004-07-15 Matsushita Electric Ind Co Ltd Task controller and task control method
US20050144347A1 (en) * 2003-12-25 2005-06-30 Akira Kitamura Apparatus and method for interrupt control
US20050167513A1 (en) 2004-02-04 2005-08-04 Sharp Kabushiki Kaisha IC card with built-in coprocessor for auxiliary arithmetic, and control method thereof
JP2005222194A (en) 2004-02-04 2005-08-18 Sharp Corp Ic card with coprocessor for auxiliary operation built-in and its control method
JP2008305351A (en) 2007-06-11 2008-12-18 Renesas Technology Corp Dispatch device
JP2009261865A (en) 2008-04-25 2009-11-12 Haruo Kitamura Japanese sandals braiding machine
US20150143010A1 (en) * 2013-11-18 2015-05-21 Electronics And Telecommunications Research Institute Method and apparatus for compensating for delay in real-time embedded system
JP2015225474A (en) 2014-05-27 2015-12-14 富士通株式会社 Information processing device and timer setting method

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
Mitsubishi Electric, "Basic Software for W-CDMA Portable Devices," Mitsubishi Electric Technical Report, vol. 77, No. 2, Feb. 2003, pp. 44-47 (total 6 pages), with a partial English translation on p. 46.
Renesas, "M3T-MR30/4 V.4.01 Users Manual," Rev. 1.00, Jun. 2011, pp. 1-298 (total 315 pages), with a partial English translation on p. 30 (Section 3.6.1).
Simonović et al., "Power Management Implementation in FreeRTOS on LM3S3748,"Serbian Journal of Electrical Engineering, vol. 10, No. 1, Feb. 2013, pp. 199-208.

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20220055637A1 (en) * 2019-06-27 2022-02-24 Mitsubishi Electric Corporation Electronic control unit and computer readable medium

Also Published As

Publication number Publication date
TW201828046A (en) 2018-08-01
CN110192183B (en) 2023-07-07
US20200004581A1 (en) 2020-01-02
DE112017006454B4 (en) 2020-06-10
CN110192183A (en) 2019-08-30
JP6316522B1 (en) 2018-04-25
WO2018138798A1 (en) 2018-08-02
JPWO2018138798A1 (en) 2019-02-07
DE112017006454T5 (en) 2019-10-02

Similar Documents

Publication Publication Date Title
CN109074158B (en) Electronic equipment and method for starting application thereof
US8745362B2 (en) Operating system aware branch predictor using a dynamically reconfigurable branch history table
WO2017142309A1 (en) Electronic device and method for controlling application and component
US10564889B2 (en) Method and apparatus for processing data based on physical host
US10983823B2 (en) Computer apparatus, task initiation method, and computer readable medium
WO2020134566A1 (en) Control method for doze mode of mobile terminal, storage medium and mobile terminal
US9355049B2 (en) Interrupt monitoring system and computer system
US20170140739A1 (en) Systems and methods for enabling a systems management interface with an alternate frame buffer
WO2019072179A1 (en) Application running control method and apparatus
CN107391196B (en) Application program updating method and mobile terminal
CN107292142B (en) Business operation processing method, business operation processing device and business terminal
CN110570830A (en) Equipment adjusting method and device, storage medium and electronic equipment
CN107168776B (en) Event statistical method, device, equipment and storage medium
US10203772B2 (en) Hotkey triggering system and method for an electronic device
CN107729136B (en) Processing priority configuration method and device based on FPGA
US20200257545A1 (en) Simulation device, simulation method, and computer readable medium
US20180011526A1 (en) Electronic device and method for operating the same
CN111382017A (en) Fault query method, device, server and storage medium
CN110008071B (en) Remote debugging device and method
US20150302824A1 (en) Display device and color calibration method
JP2015011432A (en) Information processing device and information processing method
CN109491771B (en) Task processing method based on system performance optimization and related equipment
CN112988105A (en) Playing state control method and device, electronic equipment and storage medium
CN107643951B (en) Process processing method and device and electronic equipment
CN108132803B (en) Timing keep-alive and awakening method, system, terminal and medium based on mobile terminal

Legal Events

Date Code Title Description
FEPP Fee payment procedure

Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

AS Assignment

Owner name: MITSUBISHI ELECTRIC CORPORATION, JAPAN

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:SATO, CHISATO;KATAYAMA, YOSHIAKI;SIGNING DATES FROM 20190508 TO 20190509;REEL/FRAME:049360/0257

STPP Information on status: patent application and granting procedure in general

Free format text: DOCKETED NEW CASE - READY FOR EXAMINATION

STPP Information on status: patent application and granting procedure in general

Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS

STPP Information on status: patent application and granting procedure in general

Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT RECEIVED

STPP Information on status: patent application and granting procedure in general

Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED

STCF Information on status: patent grant

Free format text: PATENTED CASE