CN111813531B - Clock scheduling method and system for operating system - Google Patents

Clock scheduling method and system for operating system Download PDF

Info

Publication number
CN111813531B
CN111813531B CN202010894521.1A CN202010894521A CN111813531B CN 111813531 B CN111813531 B CN 111813531B CN 202010894521 A CN202010894521 A CN 202010894521A CN 111813531 B CN111813531 B CN 111813531B
Authority
CN
China
Prior art keywords
operating system
clock
interrupt
triggering
time
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
Application number
CN202010894521.1A
Other languages
Chinese (zh)
Other versions
CN111813531A (en
Inventor
刘志立
李壮
王志强
杜登科
张东伟
张善从
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.)
Beijing Ucas Technology Co ltd
Original Assignee
Beijing Ucas Technology Co ltd
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 Beijing Ucas Technology Co ltd filed Critical Beijing Ucas Technology Co ltd
Priority to CN202010894521.1A priority Critical patent/CN111813531B/en
Publication of CN111813531A publication Critical patent/CN111813531A/en
Application granted granted Critical
Publication of CN111813531B publication Critical patent/CN111813531B/en
Active legal-status Critical Current
Anticipated 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
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/48Indexing scheme relating to G06F9/48
    • G06F2209/484Precedence

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Power Sources (AREA)

Abstract

The invention discloses a clock scheduling method and a system of an operating system, wherein when the active scheduling of the current running process of the operating system of equipment is determined, and the priority of the current running process is determined to be higher than or equal to the set attention priority, the clock interrupt is directly triggered to execute an interrupt event to be run when the current time of the operating system of the equipment is judged to be greater than the sum of the last clock interrupt triggering time and the clock interrupt scheduling period time of the operating system of the equipment. It can be seen that, in order to prevent frequent determination and triggering of the clock interrupt and prevent the performance of the operating system of the device from being reduced, the above scheme is executed only when the priority of the currently running process is higher than or equal to the set attention priority of triggering the clock interrupt. Therefore, the method and the system provided by the embodiment of the invention can accurately determine the time for triggering the clock interrupt and improve the real-time performance of real-time process switching.

Description

Clock scheduling method and system for operating system
Technical Field
The present invention relates to the field of operating system execution technology of devices, and in particular, to a method and a system for operating system clock scheduling.
Background
Devices such as computers or embedded devices are generally composed of a hardware portion and a software portion, and are devices capable of independently operating and performing various functions. The software part in the device comprises a software running environment and an operating system thereof, and the hardware part comprises hardware units such as a processor, a memory, a communication module and the like. The equipment with the structure is widely applied to the aspects of daily life, industrial control, aerospace, military and the like.
Generally, a device employs an open-source operating system, such as a Linux system, to manage and control hardware and software resources in the device. The operating system of the device realizes the running of the software program in a process mode, namely, the software program is called into the set process, and the Central Processing Unit (CPU) of the device schedules the process of the operating system under the interrupt calling in a clock interrupt mode.
In order to control the CPU of the device to execute processes and interrupt events in order, a clock subsystem needs to be set in the operating system of the device, where the clock subsystem triggers clock interrupt periodically or aperiodically, so as to implement functions of global time management, process scheduling, process statistics, and the like of the device.
The clock subsystem in the device schedules the clock, and there are various ways of triggering the clock interrupt, and the way of triggering the clock interrupt is described by taking the Linux system as an example of the operating system of the device.
The first mode is a PERIODIC scheduling mode (HZ _ PERIODIC), a clock scheduling period is set, namely a Hertz (HZ) parameter of clock scheduling is set, and clock interruption is triggered periodically according to the clock scheduling period;
the second mode, the IDLE scheduling mode (NO _ HZ _ IDLE), stops triggering clock interrupts when the CPU of the device is in an IDLE state or an off state; when a CPU of the equipment is in a running state, periodically triggering clock interruption according to a set clock scheduling period;
the third mode is a scheduling mode (NO _ HZ _ FULL) when a single process runs, when a CPU in the equipment is in an idle state or a closed state, or only one process is currently run by a Linux system of the equipment, or the Linux system of the equipment adopts a first-in first-out (FIFO) scheduling mechanism to schedule the process, the clock interruption is stopped being triggered; in the cases of excluding the above cases, the clock interrupt is triggered periodically according to the set clock scheduling period.
It can be seen that the clock scheduling method adopted by the operating system of the device for triggering the clock interrupt may be mainly divided into a periodic clock scheduling method and an aperiodic clock scheduling method, where the first method adopts the periodic clock scheduling method, and the second method and the third method adopt the aperiodic clock scheduling method. Compared with the periodic clock scheduling mode, the non-periodic clock scheduling mode mainly reduces the interference to the running process of the operating system of the equipment, and reduces the frequency of the CPU of the scheduling equipment for executing the process under the condition of low load, thereby reducing the power consumption of the CPU, and the application is wider.
In order to ensure the real-time performance of the process in the operating system of the device, a non-periodic clock scheduling mode is adopted to trigger clock interruption, a CPU of the control device quits or suspends the current running process, and the time interval for triggering the clock interruption when the interrupt event to be run is switched and operated becomes a key factor for influencing the process switching speed. This is because, after the clock interrupt is triggered, switching of the real-time process cannot be realized until the interrupt event to be executed corresponding to the CPU of the control device is completed. That is, before the interrupt event to be executed corresponding to the clock interrupt completes running, the CPU of the device cannot respond to the exit of the running process or the active scheduling request of the running process in the operating system of the device.
In the non-periodic clock scheduling case, the interval between triggering two clock interrupts may be longer than the interval of the periodic clock scheduling. The interval time between two clock interrupts is longer, the running time of an interrupt event to be run in the equipment is also longer, and further the time that the real-time process can not be switched is also longer, so that the real-time performance of an operating system of the equipment is poor.
Under the condition of periodic clock scheduling, the triggering of clock interruption is more frequent, and the probability of influencing the real-time process switching of an operating system of the equipment is higher.
Disclosure of Invention
In view of this, embodiments of the present invention provide a method for scheduling an operating system clock, where the method can accurately determine the time for triggering clock interrupt, and improve the real-time performance of real-time process switching.
The embodiment of the invention also provides an operating system clock scheduling system, which can accurately determine the time for triggering the clock interrupt and improve the real-time performance of real-time process switching.
The embodiment of the invention provides a clock scheduling method of an operating system, which comprises the following steps:
determining active scheduling of a current running process of an operating system of equipment;
and when the priority of the current running process is determined to be higher than or equal to the set attention priority, judging that the current time of the operating system of the equipment is greater than the sum of the last clock interrupt triggering time of the operating system of the equipment and the set clock interrupt scheduling cycle time, immediately triggering clock interrupt, and executing an interrupt event to be run.
Preferably, the determining that the currently running process of the operating system of the device is actively scheduled comprises:
determining that the current running process of the operating system of the device actively gives up occupation of a Central Processing Unit (CPU) of the device.
Preferably, before the determining that the priority of the currently running process is higher than or equal to the set attention priority, the method further includes:
judging whether the priority of the current running process is higher than or equal to the set attention priority, if so, executing the subsequent judging step; if not, triggering clock interruption according to the triggering time of the clock interruption, and controlling a CPU of the equipment to execute the interruption event to be operated.
Preferably, the operating system of the device is a Linux system.
The embodiment of the present invention further provides an operating system clock scheduling system, including: a judging unit and a trigger clock interrupt unit, wherein,
the judging unit is used for determining active scheduling of a current running process of an operating system of the equipment; when the priority of the current running process is determined to be higher than or equal to the set attention priority, judging that the current time of the operating system is larger than the sum of the last clock interrupt triggering time of the operating system of the equipment and the set clock interrupt scheduling cycle time, and immediately controlling a clock interrupt triggering unit to trigger clock interrupt;
and the clock interrupt unit is used for immediately triggering clock interrupt under the control of the judging unit so as to control the CPU of the equipment to execute the interrupt event to be operated.
Preferably, the determining unit is further configured to determine that a currently running process of an operating system of the device actively gives up CPU occupation of the device.
Preferably, the determining unit is further configured to determine whether the priority of the currently running process is higher than or equal to the set attention priority, and if so, perform the subsequent determining step; if not, controlling the clock interrupt triggering unit to trigger clock interrupt according to the triggering time of the clock interrupt.
Preferably, the operating system of the device is a Linux system.
As can be seen from the above, in the embodiment of the present invention, when it is determined that the priority of the currently running process is higher than or equal to the set attention priority when the determined currently running process of the operating system is actively scheduled, and it is determined that the current time of the operating system of the device is greater than the sum of the last clock interrupt trigger time and the clock interrupt scheduling cycle time of the operating system of the device, the clock interrupt is directly triggered, and the interrupt event to be run is executed. It can be seen that, in order to prevent frequent determination and triggering of clock interrupts, and to prevent performance degradation of the operating system of the device, the above scheme is executed when the priority of the currently running process of the operating system of the device is higher than or equal to the set priority of interest. Therefore, the method and the system provided by the embodiment of the invention can accurately determine the time for triggering the clock interrupt and improve the real-time performance of real-time process switching.
Drawings
Fig. 1 is a flowchart of an operating system clock scheduling method according to an embodiment of the present invention;
fig. 2 is a flowchart illustrating an exemplary method for scheduling an operating system clock according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of an operating system clock scheduling system according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention is further described in detail below with reference to the accompanying drawings and examples.
It can be seen from the background art that when the CPU of the device executes the interrupt event to be executed, the real-time performance of real-time process switching in the operating system of the device is affected. If the clock interrupt can be actively triggered at a specific time, and the influence factor is controlled within a predictable range, the real-time process switching instantaneity in the operating system of the device can be remarkably improved.
In order to solve the above problem, in the embodiment of the present invention, when determining that the priority of the currently running process is higher than or equal to the set attention priority during the active scheduling of the determined currently running process of the operating system, when determining that the current time of the operating system of the device is greater than the sum of the last clock interrupt trigger time and the clock interrupt scheduling cycle time of the operating system of the device, directly triggering clock interrupt, and controlling a CPU of the device to execute an interrupt event to be run. Therefore, the time for triggering the clock interrupt can be accurately determined, when the time for triggering the clock interrupt is selected to be the time for actively scheduling the process in the operating system of the equipment, the probability of switching the real-time process in the operating system of the equipment again is obviously reduced, the conflict between the interrupt event to be operated and the real-time process in the operating system of the equipment is reduced, and the real-time performance of the operating system is improved.
It can be seen that, in order to prevent frequent determination and triggering of clock interrupt and to prevent reduction of the operating system performance of the device, the above scheme is executed when the priority of the currently running process is higher than or equal to the set attention priority.
Therefore, the method and the system provided by the embodiment of the invention can accurately determine the time for triggering the clock interrupt and improve the real-time performance of real-time process switching.
Fig. 1 is a flowchart of an operating system clock scheduling method according to an embodiment of the present invention, which includes the following specific steps:
step 101, determining active scheduling of a current running process of an operating system of equipment;
step 102, determining that the priority of the current running process is higher than or equal to the set attention priority;
103, judging whether the current time of the operating system of the equipment is greater than the sum of the last clock interrupt trigger time of the operating system of the equipment and the set clock interrupt scheduling cycle time, and if so, executing a step 104; if not, go to step 105;
104, triggering clock interrupt immediately, and controlling a CPU of the equipment to execute an interrupt event to be operated;
105, not carrying out clock scheduling;
in this step, no clock scheduling, no special operation, or other processes of the operating system may be performed, which is not a key point of the embodiment of the present invention and is not limited herein.
In the method, the determining that the currently running process of the operating system of the device is actively scheduled includes:
determining that a currently running process of an operating system of a device is actively relinquishing CPU occupation of the device. In this case, the currently running process of the operating system of the device is mostly executed and completed, or the currently running process actively enters the sleep mode after completing the phase task.
In this method, before the step 102 is executed, the method further includes:
judging whether the priority of the current running process is higher than or equal to the set attention priority, if so, executing the subsequent step 103; if not, triggering clock interruption according to the triggering time of the clock interruption, and controlling a CPU of the equipment to execute the interruption event to be operated. Therefore, for the current running process of the operating system of some low-priority equipment, the method provided by the embodiment of the invention can be adopted, but the non-periodic clock scheduling clock interrupt or the periodic clock scheduling clock interrupt is still adopted, the CPU of the equipment is controlled to execute the subsequent interrupt event to be run, and the performance of the operating system of the equipment is ensured not to be reduced.
In the embodiment of the invention, when the current running process of the operating system of the device actively abandons the CPU occupation of the device, the probability of the process occupying the CPU execution resources of the device again is lower, so the method provided by the embodiment of the invention can reduce the influence on the real-time performance of the process.
In the embodiment of the invention, the operating system of the equipment adopts a Linux system. The following takes an operating system of the device as a Linux system as an example, and illustrates an embodiment of the present invention.
Fig. 2 is a flowchart illustrating an exemplary method for scheduling an operating system clock according to an embodiment of the present invention, which includes the following specific steps:
step 201, setting the attention priority of triggering clock interruption, which is denoted as Pcare;
in the step, the Pcare is set according to specific requirements, if the set ratio is larger, the process with the priority greater than the Pcare in the operating system of the equipment has better real-time performance, but the process with the real-time performance improved is fewer;
step 202, setting the last time clock interrupt triggering time to be Tn-1;
step 203, setting the clock interrupt scheduling frequency parameter of the equipment to HZ, and then setting the scheduling cycle time Tperiod to 1/HZ;
step 204, the CPU of the device starts to execute a certain process according to the scheduling of the operating system;
step 205, determining active scheduling of the current running process;
step 206, judging whether the priority P of the current running process is more than or equal to Pcare, if so, executing step 208; if not, go to step 207;
step 207, adopting a set non-periodic clock scheduling mode or a periodic clock scheduling mode, controlling a CPU of the equipment to execute the interrupt event to be operated, and returning to step 204 after the execution is finished;
step 208, judging the current time T of the operating system, judging that T is more than Tn-1+ Tperiod, and if so, executing step 209; if not, returning to the step 204 for execution;
step 209, triggering clock interrupt immediately, controlling a CPU of the device to execute an interrupt event to be run, setting the current clock interrupt trigger time to be Tn = T, and returning to step 204 after execution is completed;
here, the current clock interrupt trigger time is set to be Tn = T to be used as a trigger time determination basis of clock interrupt when the CPU executes the interrupt event to be run next time.
Fig. 3 is a schematic structural diagram of an operating system clock scheduling system according to an embodiment of the present invention, including: a judging unit and a trigger clock interrupt unit, wherein,
the judging unit is used for determining active scheduling of a current running process of an operating system of the equipment; when the priority of the current running process is determined to be higher than or equal to the set attention priority, judging that the current time of the operating system is larger than the sum of the last clock interrupt triggering time of the operating system of the equipment and the set clock interrupt scheduling cycle time, and immediately controlling a clock interrupt triggering unit to trigger clock interrupt;
and the clock interrupt unit is used for immediately triggering clock interrupt under the control of the judging unit so as to control the CPU of the equipment to execute the interrupt event to be operated.
The system provided by the invention can be arranged in a clock subsystem of the equipment.
In the system, the judging unit is further configured to determine that a currently running process of an operating system of the device actively gives up CPU occupation of the device.
In the system, the judging unit is further configured to judge whether the priority of the currently running process is higher than or equal to the set attention priority, and if so, perform the subsequent judging step; if not, controlling the clock interrupt triggering unit to trigger clock interrupt according to the triggering time of the clock interrupt.
The system is applied to equipment with an operating system, and the operating system of the equipment adopts a Linux system.
It can be seen that the method for triggering clock interrupt provided by the embodiment of the present invention considers both the real-time switching requirement and the performance requirement of the device process.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like made within the spirit and principle of the present invention should be included in the scope of the present invention.

Claims (8)

1. An operating system clock scheduling method, comprising:
determining active scheduling of a current running process of an operating system of equipment;
and when the priority of the current running process is determined to be higher than or equal to the set attention priority, judging that the current time of the operating system of the equipment is greater than the sum of the last clock interrupt triggering time of the operating system of the equipment and the set clock interrupt scheduling cycle time, immediately triggering clock interrupt, and executing an interrupt event to be run.
2. The method of claim 1, wherein the determining that a currently running process of an operating system of a device is actively scheduling comprises:
determining that the current running process of the operating system of the device actively gives up occupation of a Central Processing Unit (CPU) of the device.
3. The method of claim 1 or 2, wherein prior to the determining that the priority level of the currently running process is greater than or equal to the set priority level of attention, further comprising:
judging whether the priority of the current running process is higher than or equal to the set attention priority, if so, executing the subsequent judging step; if not, triggering clock interruption according to the triggering time of the clock interruption, and controlling a CPU of the equipment to execute the interruption event to be operated.
4. The method of claim 1, wherein the operating system of the device employs a Linux system.
5. An operating system clock scheduling system, comprising: a judging unit and a trigger clock interrupt unit, wherein,
the judging unit is used for determining active scheduling of a current running process of an operating system of the equipment; when the priority of the current running process is determined to be higher than or equal to the set attention priority, judging that the current time of the operating system is larger than the sum of the last clock interrupt triggering time of the operating system of the equipment and the set clock interrupt scheduling cycle time, and immediately controlling a clock interrupt triggering unit to trigger clock interrupt;
and the clock interrupt unit is used for immediately triggering clock interrupt under the control of the judging unit so as to control the CPU of the equipment to execute the interrupt event to be operated.
6. The system of claim 5, wherein the determining unit is further configured to determine that a currently running process of an operating system of a device is actively relinquishing CPU utilization of the device.
7. The system according to claim 5 or 6, wherein the judging unit is further configured to judge whether the priority of the currently running process is higher than or equal to the set attention priority, and if so, perform the subsequent judging step; if not, controlling the clock interrupt triggering unit to trigger clock interrupt according to the triggering time of the clock interrupt.
8. The system of claim 5, wherein the operating system of the device employs a Linux system.
CN202010894521.1A 2020-08-31 2020-08-31 Clock scheduling method and system for operating system Active CN111813531B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010894521.1A CN111813531B (en) 2020-08-31 2020-08-31 Clock scheduling method and system for operating system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010894521.1A CN111813531B (en) 2020-08-31 2020-08-31 Clock scheduling method and system for operating system

Publications (2)

Publication Number Publication Date
CN111813531A CN111813531A (en) 2020-10-23
CN111813531B true CN111813531B (en) 2020-11-27

Family

ID=72859818

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010894521.1A Active CN111813531B (en) 2020-08-31 2020-08-31 Clock scheduling method and system for operating system

Country Status (1)

Country Link
CN (1) CN111813531B (en)

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090292846A1 (en) * 2008-05-21 2009-11-26 Kyu-Ho Park Method of interrupt scheduling
CN102081555A (en) * 2011-02-24 2011-06-01 华为技术有限公司 Method and device for adjusting clock interrupt cycle
US20130055276A1 (en) * 2011-08-26 2013-02-28 Knu-Industry Cooperation Foundation Task scheduling method and apparatus
US20130117756A1 (en) * 2011-11-08 2013-05-09 Electronics And Telecommunications Research Institute Task scheduling method for real time operating system
CN103984596A (en) * 2014-05-19 2014-08-13 上海微小卫星工程中心 Dispatching method and device of satellite borne software
CN104572281A (en) * 2014-12-29 2015-04-29 联合汽车电子有限公司 Clock interrupt periodical task occupation achieving method and embedded system
CN104679583A (en) * 2013-11-28 2015-06-03 华为技术有限公司 Method and device for dynamically adjusting clock interruption
CN110928657A (en) * 2019-11-18 2020-03-27 西北工业大学 Embedded system certainty analysis method

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090292846A1 (en) * 2008-05-21 2009-11-26 Kyu-Ho Park Method of interrupt scheduling
CN102081555A (en) * 2011-02-24 2011-06-01 华为技术有限公司 Method and device for adjusting clock interrupt cycle
US20130055276A1 (en) * 2011-08-26 2013-02-28 Knu-Industry Cooperation Foundation Task scheduling method and apparatus
US20130117756A1 (en) * 2011-11-08 2013-05-09 Electronics And Telecommunications Research Institute Task scheduling method for real time operating system
CN104679583A (en) * 2013-11-28 2015-06-03 华为技术有限公司 Method and device for dynamically adjusting clock interruption
CN103984596A (en) * 2014-05-19 2014-08-13 上海微小卫星工程中心 Dispatching method and device of satellite borne software
CN104572281A (en) * 2014-12-29 2015-04-29 联合汽车电子有限公司 Clock interrupt periodical task occupation achieving method and embedded system
CN110928657A (en) * 2019-11-18 2020-03-27 西北工业大学 Embedded system certainty analysis method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
动态调整时钟中断周期提高μC/OS-II实时性能;郭俊 等;《单片机与嵌入式系统应用》;20041130;第82-83页 *

Also Published As

Publication number Publication date
CN111813531A (en) 2020-10-23

Similar Documents

Publication Publication Date Title
US8504753B2 (en) Suspendable interrupts for processor idle management
US8775838B2 (en) Limiting the number of unexpected wakeups in a computer system implementing a power-saving preemptive wakeup method from historical data
EP2227727B1 (en) Data processor performance prediction
US7120911B1 (en) Processor power-saving control method, storage medium, and processor power-saving control device
US20060010446A1 (en) Method and system for concurrent execution of multiple kernels
US20070094525A1 (en) Dynamic power management in system on chips (SOC)
Leyva-del-Foyo et al. Predictable interrupt management for real time kernels over conventional PC hardware
JPH0969017A (en) Method and apparatus for management of electric power of computer system
JPWO2005106623A1 (en) CPU clock control device, CPU clock control method, CPU clock control program, recording medium, and transmission medium
US10271326B2 (en) Scheduling function calls
CN111897637B (en) Job scheduling method, device, host and storage medium
WO2016195778A1 (en) Opportunistic waking of an application processor
WO2014186105A1 (en) System and method for selective timer coalescing
CN111813531B (en) Clock scheduling method and system for operating system
JP4614239B2 (en) Multitask scheduling function-equipped device and program
CA2767782C (en) Suspendable interrupts for processor idle management
US20050160425A1 (en) Limitation of the response time of a software process
CN112214309A (en) Method and medium for realizing kernel of embedded operating system of vehicle-mounted Internet of things
Oikawa et al. Efficient timing management for user-level real-time threads
Cheour et al. EDF scheduler technique for wireless sensors networks: case study
JP2006172229A (en) Operation control method for task, operation control system for task and program
Chen et al. Research reform on embedded linux's hard real-time capability in application
CN110489089B (en) Embedded system low-power consumption control method and system based on interrupt management framework
CN116932227B (en) Task scheduling method and device based on single thread
Seo et al. Catching two rabbits: adaptive real‐time support for embedded Linux

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant