WO2011104812A1 - マルチコアプロセッサシステム、割込プログラム、および割込方法 - Google Patents
マルチコアプロセッサシステム、割込プログラム、および割込方法 Download PDFInfo
- Publication number
- WO2011104812A1 WO2011104812A1 PCT/JP2010/052733 JP2010052733W WO2011104812A1 WO 2011104812 A1 WO2011104812 A1 WO 2011104812A1 JP 2010052733 W JP2010052733 W JP 2010052733W WO 2011104812 A1 WO2011104812 A1 WO 2011104812A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- thread
- core
- event
- applications
- executed
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements 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/46—Multiprogramming arrangements
- G06F9/48—Program initiating; Program switching, e.g. by interrupt
- G06F9/4806—Task transfer initiation or dispatching
- G06F9/4843—Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
- G06F9/485—Task life-cycle, e.g. stopping, restarting, resuming execution
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements 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/46—Multiprogramming arrangements
- G06F9/52—Program synchronisation; Mutual exclusion, e.g. by means of semaphores
- G06F9/526—Mutual exclusion algorithms
-
- Y—GENERAL 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
- Y02—TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
- Y02D—CLIMATE 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/00—Energy efficient computing, e.g. low power processors, power management or thermal management
Definitions
- the present invention relates to a multi-core processor system, an interrupt program, and an interrupt method for controlling thread interrupts.
- a multi-core processor system has been disclosed.
- a slave CPU Central Processing Unit
- a multi-core processor system in which a slave library is thread-activated in response to an activation request from a master CPU without operating an OS (Operating System) kernel (for example, Patent Document 1 below) See ⁇ 4.)
- OS Operating System
- the slave CPU does not operate the kernel, and has only the minimum necessary thread execution procedure and the interrupt control function from the master CPU, thereby minimizing the overhead caused by the OS kernel.
- the slave CPU executes a thread if there is a call from the master CPU, but if there is no call, the sleep state continues.
- the master CPU and the slave CPU are rarely executed in parallel at all times, and normally the slave CPU is in a sleep state until a call from the master CPU is received.
- the system utilization efficiency is determined by the ratio of software that can be executed in parallel (Amdahl's law), but as the number of processors increases or the ratio of software that can be executed in parallel decreases, There was a problem that the utilization efficiency deteriorated and the performance deteriorated.
- An object of the present invention is to provide a multi-core processor system, an interrupt program, and an interrupt method that can improve the utilization efficiency of a processor with a low load in order to solve the above-described problems caused by the prior art. To do.
- the present multi-core processor system, the interrupt program, and the interrupt method are assigned an OS and a single core on which a plurality of applications are executed and threads of the plurality of applications.
- a multi-core processor system having another core, wherein an interrupt signal that specifies an event that has occurred in one application among the plurality of applications is received from the one core, and is specified by the received interrupt signal Whether the current event is an exclusive or synchronous start event for a thread currently executing in the other core, and if it is determined that the start event is the start event, the currently executing thread is Evacuated from the core of the Assigning a Chi evacuated other threads other than the thread was allowed to run target thread of the other core be a requirement.
- the multi-core processor system, the interrupt program, and the interrupt method have the effect of reducing the load and improving the processor utilization efficiency.
- the multi-core processor is a processor in which a plurality of cores are mounted. If a plurality of cores are mounted, a single processor having a plurality of cores may be used, or a processor group in which single core processors are arranged in parallel may be used. In the present embodiment, in order to simplify the explanation, a processor group in which single-core processors are arranged in parallel will be described as an example.
- FIG. 1 is a block diagram showing a hardware configuration of the multi-core processor system according to the present embodiment.
- a multi-core processor system 100 is configured by connecting a master CPU 101, one or a plurality of slave CPUs 102 (one in FIG. 1), and a memory 103 via a bus 104.
- the master CPU 101 and the slave CPU 102 have a built-in cache memory.
- the master CPU 101 runs an OS 110 that controls memory management and the slave CPU 102.
- the OS 110 runs only on the master CPU 101.
- a plurality of applications corresponding to the OS 110 operate in a time slice according to the scheduling of the OS 110.
- the application A includes a thread B that starts during the operation, and the application X includes a thread Y that starts during the operation.
- the slave CPU 102 executes the interrupt program 120. In addition, an application thread executed by the master CPU 101 is also executed. In the slave CPU 102, since the OS 110 does not run, only one CPU 110 operates independently.
- the memory 103 stores the OS 110, applications, and other various information, and is used as a work area for the master CPU 101 and the slave CPU 102.
- the memory 103 is a storage device such as a ROM (Read Only Memory), a RAM (Random Access Memory), a flash memory, and a hard disk drive.
- the applications A and X operating on the OS 110 are time sliced on the master CPU 101, and the thread B of the application A is operating independently on the slave CPU 102. Note that the thread Y of the application X is waiting in the thread queue of the master CPU 101.
- the slave CPU 102 when an exclusive or synchronous event occurs, the slave CPU 102 is efficiently operated.
- an example of synchronization will be described.
- the application A has a function of reading a file and developing it on the memory 103, and the thread B being simultaneously executed uses the file data developed on the memory 103.
- the thread B waits until the file reading and memory expansion by the application A are completed. That is, the memory area where the data is expanded is under exclusive monitoring by the application A simultaneously with the file reading, and the thread B is temporarily released from the slave CPU 102. Thereafter, the data is shared (synchronized) with the thread B after the memory is expanded.
- the application A is a browser
- the thread B is a moving image reproduction program that operates in the browser.
- the application X is a mailer and the thread Y is a mail inquiry program.
- FIG. 2 is a flowchart showing an execution processing procedure in the multi-core processor system 100 according to the present embodiment.
- the processing procedure of the master CPU 101 indicates a management processing procedure of the OS 110
- the processing procedure of the slave CPU 102 indicates a thread interrupt control processing procedure from the master CPU 101.
- the OS 110 activates the master process in parallel (step S201). Specifically, for example, the applications A and X that are master processes are time sliced.
- the master CPU 101 sets the thread of the master process in the thread queue 200 according to the execution status of the master process by the OS 110 (step S202). Specifically, for example, threads B and Y are set.
- the status of the thread queue 200 is written in, for example, the memory 103 and can be referenced from the slave CPU 102.
- the master CPU 101 detects the occurrence of an event by the OS 110 (step S203).
- the event includes thread activation and termination, interrupt, exclusion, synchronization, signal message, and the like.
- the event is generated by an application being executed on the OS 110 or a thread being executed by the slave CPU 102.
- step S204 When the OS 110 detects the occurrence of an event, the event type is determined (step S204).
- step S204 exclusion / synchronization
- the master CPU 101 applies an identifier indicating exclusion or synchronization to the upper bits of the interrupt signal by the OS 110 (step S205), and step S206. Migrate to
- step S204 when the event type is an event other than exclusive / synchronized in step S204 (step S204: other), the process proceeds to step S206.
- step S206 the master CPU 101 notifies the slave CPU 102 of an interrupt signal corresponding to the event determined in step S204 by the OS 110 (step S206).
- the master CPU 101 notifies the slave CPU 102 of an interrupt signal when an event occurs in the master process by the OS 110, and inputs a necessary thread into the thread queue 200 to make it an execution waiting thread.
- the slave CPU 102 waits for the activation of a thread by the interrupt program 120 (step S210).
- the slave CPU 102 executes the thread by the interrupt program 120 (step S211). This thread operation is performed until an interrupt signal is received. If the thread ends before receiving the interrupt signal, the process proceeds to step S216.
- step S212 When the slave CPU 102 receives an interrupt signal notification from the master CPU 101, the slave CPU 102 executes an interrupt reception process by the interrupt program 120 (step S212). Then, the slave CPU 102 determines the type of event designated by the interrupt signal by the interrupt program 120 (step S213). When the event is an event other than an event related to exclusion or synchronization (step S213: other), the slave CPU 102 executes event processing according to the other event by the interrupt program 120 (step S214), The process returns to step S211.
- step S213 exclusive start / synchronization start
- the slave CPU 102 saves the currently executing thread by the interrupt program 120 (step S215). Specifically, for example, the data on the cache memory of the slave CPU 102 used by the currently executing thread is flushed to the memory 103 and has been operated so far without releasing the context area on the memory 103. Save the position of the program counter. As a result, the thread that the slave CPU 102 was executing is released.
- the interrupt program 120 checks the status of the thread queue 200 of the OS 110 by the interrupt program 120 (step S216). When the thread queue 200 is not an empty set (step S216: queue ⁇ ⁇ ), the interrupt program 120 causes the interrupt program 120 to set the top thread (not a saved thread) of the thread queue 200 as an execution target thread. The thread is set and executed (step S217). Then, the process returns to step S211.
- step S216: queue ⁇
- the interrupt program 120 sets the slave CPU 102 to the low power mode by the interrupt program 120 (step S218), and the step The process shifts to the thread activation standby of S210.
- step S213 when the event type is exclusion release (end) or synchronization end (step S213: exclusion release / synchronization end), the interrupt program 120 restores the save thread by the interrupt program 120 ( Step S219). Specifically, for the save thread, the memory area used by the save thread is protected because the context area of the memory 103 is not released even if the slave CPU 102 is released.
- the save thread can be resumed (restored) simply by restoring the program counter of the save thread stored in the register of the slave CPU 102 (or the memory 103). Then, the process returns to step S211.
- the above operation makes it possible to more efficiently operate the slave CPU 102 that has been conventionally suspended due to exclusion or synchronization waiting.
- FIG. 3 is a sequence diagram showing a specific example 1 of interrupt control.
- the applications A and X are performing time slice operations on the OS 110 (actually, the OS 110, A, and X are time slice operations), and the slave CPU 102 is executing the thread B. To do. Further, it is assumed that the thread Y is waiting as an execution waiting thread in the thread queue 200 of the OS 110.
- an interrupt signal (exclusive start) is notified from application A to thread B.
- the slave CPU 102 receives the notification of the exclusion start event, the slave CPU 102 is released by saving the thread B. Since there is a thread Y in the thread queue 200, the thread Y is assigned to the slave CPU. Thereby, in the slave CPU 102, the thread Y is executed. Thereafter, when the thread Y is terminated, the thread queue 200 is empty, so that the low power mode is entered.
- the application A notifies the slave CPU 102 of an interrupt signal (exclusive end).
- the slave CPU 102 receives the notification of the exclusive end event, the slave CPU 102 restores the thread B to the slave CPU 102. As a result, the thread B can be re-executed from the position where it is retracted.
- the application A performs a coherent process to the thread B and a notification to the slave CPU 102.
- the thread B is temporarily saved, but is immediately restored. Then, when it is time to start synchronization, application A and thread B are executed in synchronization.
- FIG. 4 is a sequence diagram showing a specific example 2 of the interrupt control.
- applications A and X are performing time slice operations on the OS 110 in the master CPU 101 and a thread B is being executed in the slave CPU 102.
- the thread B is exclusive to the application X that is not the parent master process.
- the thread B When the thread B detects an exclusive start event for the application X, it notifies the OS 110.
- the OS 110 detects a stop event of the application X, and thereafter, the OS 110 and the application A perform a time slice operation. Thereafter, when the thread B detects an exclusive end event for the application X, it notifies the OS 110. Then, in the master CPU 101, the application X is restored, and the OS 110 and the applications A and X perform a time slice operation.
- the multi-core processor system 100 operates without any problem.
- FIG. 5 is a sequence diagram showing a specific example 3 of the interrupt control.
- the applications A and X are operating on the OS 110 in the master CPU 101 and the thread B is executed in the slave CPU 102.
- the thread B locks the application A of the master process that is the parent of the thread B.
- thread B When thread B detects an exclusive start event for application A, it notifies OS 110.
- the OS 110 detects the stop event of the application A, and thereafter, the OS 110 and the application X perform time slice operations. Thereafter, when thread B detects an exclusive end event for application A, it notifies OS 110. Then, in the master CPU 101, the application A is restored, and the OS 110 and the applications A and X perform a time slice operation.
- the multi-core processor system 100 operates without any problem.
- FIG. 6 is a sequence diagram showing a specific example 4 of the interrupt control.
- FIG. 6 is an example in which a thread Y is set in the thread queue 200 of the OS 110 in FIG.
- thread B detects an exclusive start event for application A, it notifies OS 110.
- the OS 110 detects the stop event of the application A, and the application A is stopped.
- the time slice operation of the OS 110 and the application X is thereafter performed.
- the thread Y is to be activated in the application X
- the thread B cannot be executed in the slave CPU 102 because the thread B is being executed.
- the execution of the application X is also interrupted, and only the OS 110 is executed in the master CPU 101.
- the thread B notifies the OS 110.
- the thread B is terminated, and at the master CPU 101, the OS 110 and the applications X and A perform time slice operations.
- an efficient operation can be achieved regardless of which of the master CPU 101 and the slave CPU 102 an exclusion or synchronization event occurs.
- the OS 110 is run only by the master CPU 101, and the slave CPU 102 is caused to execute the interrupt program 120. Therefore, operation with a low load can be achieved.
- the executing thread is saved, and an execution waiting thread is assigned and executed in a free state after saving.
- the period of the hibernation state is significantly shortened and efficient operation can be achieved.
- the mode is shifted to the low power mode, so that the power consumption can be reduced.
- Multi-core processor system 101 Master CPU 102 Slave CPU 103 Memory 104 Bus 120 Interrupt program A, X Application B, Y Thread
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Multi Processors (AREA)
- Power Sources (AREA)
Abstract
アプリ(A)において排他開始イベントが検出されると、スレッド(B)に割込信号(排他開始)を通知する。排他開始イベントの通知を受け付けると、スレッド(B)を退避させることでスレーブCPU(102)が開放される。スレッドキューにはスレッド(Y)があるため、スレーブCPU(102)にはスレッド(Y)が割り当てられる。これにより、スレーブCPU(102)では、スレッド(Y)が実行される。スレッド(Y)が終了すると、スレッドキューは空であるため低電力モードに移行する。このあと、アプリ(A)において、排他終了イベントが検出されると、アプリ(A)からスレーブCPU(102)に対し割込信号(排他終了)を通知する。スレーブCPU(102)では、排他終了イベントの通知を受け付けると、スレッド(B)をスレーブCPU(102)に復元する。これにより、スレッド(B)を退避させた位置から再実行することができる。
Description
本発明は、スレッドの割込を制御するマルチコアプロセッサシステム、割込プログラム、および割込方法に関する。
従来からマルチコアプロセッサシステムが開示されている。たとえば、スレーブCPU(Central Processing Unit)ではOS(Operating System)のカーネルを動作させずに、マスタCPUからの起動要求に対し、スレーブライブラリをスレッド起動するマルチコアプロセッサシステムがある(たとえば、下記特許文献1~4を参照。)。この場合、スレーブCPUではカーネルは動作させず、必要最低限のスレッド実行手続きとマスタCPUからの割り込み制御機能のみを有することで、OSのカーネルによるオーバーヘッドを最小限にする。
たとえば、マスタCPUで実行されているライブラリスレッドがスレーブCPUに対しスレーブライブラリスレッドの呼び出しがあった場合、マスタCPUおよびスレーブCPUで並列実行が実現できる。
しかしながら、上述した従来技術では、スレーブCPUは、マスタCPUから呼び出しがあればスレッドを実行するが、呼び出しがない場合、休止状態が継続することとなる。マスタCPUとスレーブCPUは常時並列実行する場合は少なく、通常は、スレーブCPUはマスタCPUからの呼び出しがあるまで休止状態となる。
このように、動作させるソフトウェアの並列実行可能な比率により、システムの利用効率が決定する(アムダールの法則)が、プロセッサ数が増えるに従い、あるいはソフトウェアのもつ並列実行可能な比率が下がるに従い、極端に利用効率が悪化して性能が劣化するという問題があった。
一方、マルチプロセッサの各CPUにOSを走行させると、各CPUでアプリケーションが実行されるが、同時に実行されるアプリケーションに対し排他制御などを施す必要が生じる。このように、OSのカーネルによりきめこまかい制御が可能となるが、その管理機構によるオーバーヘッドが発生するという問題があった。特に、携帯端末のような組み込みシステムにおいては、管理機構によるオーバーヘッドが無視できない負荷になるという問題があった。
本発明は、上述した従来技術による問題点を解消するため、低負荷でかつプロセッサの利用効率の向上を図ることができるマルチコアプロセッサシステム、割込プログラム、および割込方法を提供することを目的とする。
上述した課題を解決し、目的を達成するため、本マルチコアプロセッサシステム、割込プログラム、および割込方法は、OSおよび複数のアプリケーションが実行される一のコアと前記複数のアプリケーションのスレッドが割り当てられる他のコアとを有するマルチコアプロセッサシステムであって、前記複数のアプリケーションのうち一のアプリケーションにおいて発生したイベントを指定する割込信号を前記一のコアから受信し、受信された割込信号で指定されたイベントが、前記他のコアで現在実行中のスレッドに対する排他または同期の開始イベントであるか否かを判断し、前記開始イベントであると判断された場合、前記現在実行中のスレッドを前記他のコアから退避させ、前記複数のアプリケーションの実行待ちスレッド群のうち退避させられたスレッド以外の他のスレッドを前記他のコアの実行対象スレッドに割り当てることを要件とする。
本マルチコアプロセッサシステム、割込プログラム、および割込方法によれば、低負荷でかつプロセッサの利用効率の向上を図ることができるという効果を奏する。
以下に添付図面を参照して、この発明にかかるマルチコアプロセッサシステム、割込プログラム、および割込方法の実施の形態を詳細に説明する。なお、本実施の形態のマルチコアプロセッサシステムにおいて、マルチコアプロセッサとは、コアが複数搭載されたプロセッサである。コアが複数搭載されていれば、複数のコアが搭載された単一のプロセッサでもよく、シングルコアのプロセッサが並列されているプロセッサ群でもよい。なお、本実施の形態では、説明を単純化するため、シングルコアのプロセッサが並列されているプロセッサ群を例に挙げて説明する。
(マルチコアプロセッサシステムのハードウェア構成)
図1は、本実施の形態にかかるマルチコアプロセッサシステムのハードウェア構成を示すブロック図である。図1において、マルチコアプロセッサシステム100は、マスタCPU101と一または複数のスレーブCPU102(図1では1個)とメモリ103とがバス104を介して接続されて構成されている。マスタCPU101およびスレーブCPU102にはキャッシュメモリが内蔵されている。
図1は、本実施の形態にかかるマルチコアプロセッサシステムのハードウェア構成を示すブロック図である。図1において、マルチコアプロセッサシステム100は、マスタCPU101と一または複数のスレーブCPU102(図1では1個)とメモリ103とがバス104を介して接続されて構成されている。マスタCPU101およびスレーブCPU102にはキャッシュメモリが内蔵されている。
マスタCPU101は、メモリ管理やスレーブCPU102を制御するOS110が走行する。OS110はマスタCPU101でのみ走行する。また、マスタCPU101では、OS110に対応する複数のアプリケーションが、OS110のスケジューリングによりタイムスライスで動作する。アプリケーションAにはその動作中に起動するスレッドBが含まれており、アプリケーションXにはその動作中に起動するスレッドYが含まれる。
スレーブCPU102は、割込プログラム120を実行する。また、マスタCPU101で実行されているアプリケーションのスレッドも実行される。スレーブCPU102では、OS110が走行しないため、1個だけで独立動作することとなる。
メモリ103は、OS110やアプリケーション、その他各種情報を記憶したり、マスタCPU101およびスレーブCPU102のワークエリアとして使用される。メモリ103は、具体的には、たとえば、ROM(Read Only Memory)、RAM(Random Access Memory)、フラッシュメモリ、ハードディスクドライブなどの記憶装置である。
図1では、マスタCPU101ではOS110上で動作するアプリケーションA,Xがタイムスライス動作しており、スレーブCPU102ではアプリケーションAのスレッドBが独立動作している。なお、アプリケーションXのスレッドYはマスタCPU101のスレッドキューで待機している。
本実施の形態では、排他または同期のイベントが発生した場合、スレーブCPU102を効率よく運用する。ここで、同期の例について説明する。たとえば、アプリケーションAに、ファイル読み込みを行ってメモリ103上に展開する機能があり、同時実行中のスレッドBはメモリ103上に展開されたファイルのデータを利用するものとする。このとき、スレッドBはアプリケーションAによるファイル読み出しとメモリ展開が完了するまで待機することになる。すなわちデータが展開されるメモリ領域は、ファイル読み出しと同時にアプリケーションAにより排他監視下におかれ、一時的にスレーブCPU102からスレッドBが開放される。このあと、メモリ展開後にスレッドBとデータを共用(同期)することになる。
また、排他の例について説明する。たとえば、アプリケーションAがブラウザ、スレッドBがブラウザ内で動作する動画再生プログラムとする。また、アプリケーションXがメーラ、スレッドYがメールの問合わせプログラムとする。
マスタCPU101では、アプリケーションA(ブラウザ)とアプリケーションX(メーラ)が時分割で動作しているものとする。スレッドB(動画再生プログラム)が動画配信サーバからの動画の再生中に、スレッドY(メールの問合わせプログラム)の起動タイミングがきた場合、OS110は、スレーブCPU102にスレッドY(メールの問合わせプログラム)を実行させるため、スレッドB(動画再生プログラム)を排他制御する。これにより、スレーブCPU102からスレッドB(動画再生プログラム)が開放されて、スレーブCPU102においてスレッドY(メールの問合わせプログラム)が実行されることとなる。
(マルチコアプロセッサシステム100での割込処理手順)
図2は、本実施の形態にかかるマルチコアプロセッサシステム100での実行処理手順を示すフローチャートである。図2において、マスタCPU101の処理手順は、OS110の管理処理手順を示しており、スレーブCPU102の処理手順は、マスタCPU101からのスレッドの割込制御処理手順を示している。
図2は、本実施の形態にかかるマルチコアプロセッサシステム100での実行処理手順を示すフローチャートである。図2において、マスタCPU101の処理手順は、OS110の管理処理手順を示しており、スレーブCPU102の処理手順は、マスタCPU101からのスレッドの割込制御処理手順を示している。
まず、マスタCPU101でのOS110の管理処理手順について説明する。OS110は、マスタプロセスを並列起動する(ステップS201)。具体的には、たとえば、マスタプロセスであるアプリケーションA,Xをタイムスライス動作させる。
また、起動されたマスタプロセスが実行されると、マスタCPU101は、OS110により、マスタプロセスの実行状況に応じてマスタプロセスのスレッドをスレッドキュー200に設定する(ステップS202)。具体的には、たとえば、スレッドB,Yを設定する。スレッドキュー200のステータスは、たとえば、メモリ103に書き込まれており、スレーブCPU102から参照可能となっている。
そして、マスタCPU101は、OS110により、イベントの発生を検出する(ステップS203)。ここで、イベントとは、スレッドの起動や停止、割込、排他、同期、シグナル・メッセージなどがある。イベントは、OS110上で実行されているアプリケーションやスレーブCPU102で実行されているスレッドにより発生する。
OS110がイベントの発生を検出すると、そのイベント種別を判別する(ステップS204)。イベントが排他または同期に関するイベントである場合(ステップS204:排他・同期)、マスタCPU101は、OS110により、割込信号の上位ビットに排他または同期を示す識別子を印加して(ステップS205)、ステップS206に移行する。
一方、ステップS204において、イベント種別が排他・同期以外のイベントである場合(ステップS204:その他)、ステップS206に移行する。ステップS206では、マスタCPU101は、OS110により、ステップS204で判別されたイベントに応じた割込信号をスレーブCPU102に通知する(ステップS206)。このように、マスタCPU101は、OS110により、マスタプロセスにおいてイベントが発生すると割込信号をスレーブCPU102に通知するとともに、スレッドキュー200に必要なスレッドを投入して、実行待ちスレッドにする。
また、スレーブCPU102は、割込プログラム120により、スレッドの起動を待ち受け(ステップS210)、スレッドが起動されると、スレーブCPU102は、割込プログラム120により、スレッドを実行する(ステップS211)。このスレッド動作は割込信号を受信するまでおこなわれる。また、割込信号の受信前にスレッドが終了した場合は、ステップS216に移行する。
また、スレーブCPU102がマスタCPU101から割込信号の通知を受けると、スレーブCPU102は、割込プログラム120により、割込受信処理を実行する(ステップS212)。そして、スレーブCPU102は、割込プログラム120により、割込信号で指定されたイベントの種別を判断する(ステップS213)。イベントが、排他または同期に関するイベント以外の他のイベントである場合(ステップS213:その他)、スレーブCPU102は、割込プログラム120により、他のイベントに応じたイベント処理を実行して(ステップS214)、ステップS211に戻る。
一方、イベント種別が排他または同期の開始イベントである場合(ステップS213:排他開始・同期開始)、スレーブCPU102は、割込プログラム120により、現在実行中のスレッドを退避させる(ステップS215)。具体的には、たとえば、現在実行中のスレッドが利用していたスレーブCPU102のキャッシュメモリ上のデータをメモリ103にフラッシュし、メモリ103上のコンテキスト領域を開放することなく、これまで動作していたプログラムカウンタの位置を保存する。これにより、スレーブCPU102が実行していたスレッドから開放される。
スレッドが退避されると、割込プログラム120は、割込プログラム120により、OS110のスレッドキュー200のステータスをチェックする(ステップS216)。スレッドキュー200が空集合でない場合(ステップS216:キュー≠Φ)、割込プログラム120は、割込プログラム120により、スレッドキュー200の先頭のスレッド(退避させられたスレッドではない)を実行対象スレッドに設定して当該スレッドを実行する(ステップS217)。そして、ステップS211に戻る。
一方、スレッドキュー200のステータスが空集合である場合(ステップS216:キュー=Φ)、割込プログラム120は、割込プログラム120により、スレーブCPU102を低電力モードに設定して(ステップS218)、ステップS210のスレッド起動待ち受けに移行する。
また、ステップS213において、イベント種別が、排他解除(終了)または同期終了である場合(ステップS213:排他解除・同期終了)、割込プログラム120は、割込プログラム120により、退避スレッドを復元する(ステップS219)。具体的には、退避スレッドについては、スレーブCPU102を開放してもメモリ103のコンテキスト領域は開放していないため、退避スレッドが用いていたメモリ領域は保護されている。
単純に、スレーブCPU102のレジスタ(メモリ103でもよい)に保存していた退避スレッドのプログラムカウンタを復元するのみで、退避スレッドを再開(復元)することができる。そして、ステップS211に戻る。このように、以上の操作により、従来では排他または同期待ちのため休止していたスレーブCPU102をより効率的に運用することが可能となる。
(割込制御の具体例)
つぎに、図3~図6を用いて割込制御の具体例を説明する。
つぎに、図3~図6を用いて割込制御の具体例を説明する。
図3は、割込制御の具体例1を示すシーケンス図である。図3では、マスタCPU101においてアプリケーションA,XがOS110上でタイムスライス動作しており(実際には、OS110、A、Xがタイムスライス動作)、スレーブCPU102にはスレッドBが実行されているものとする。また、OS110のスレッドキュー200には実行待ちスレッドとしてスレッドYが待機しているものとする。
アプリケーションAにおいて排他開始イベントが検出されると、アプリケーションAからスレッドBに対し割込信号(排他開始)を通知する。スレーブCPU102では、排他開始イベントの通知を受け付けると、スレッドBを退避させることでスレーブCPU102が開放される。スレッドキュー200にはスレッドYがあるため、スレーブCPU102にはスレッドYが割り当てられる。これにより、スレーブCPU102では、スレッドYが実行される。このあと、スレッドYが終了すると、スレッドキュー200は空であるため低電力モードに移行する。
このあと、アプリケーションAにおいて、排他終了イベントが検出されると、アプリケーションAからスレーブCPU102に対し割込信号(排他終了)を通知する。スレーブCPU102では、排他終了イベントの通知を受け付けると、スレッドBをスレーブCPU102に復元する。これにより、スレッドBを退避させた位置から再実行することができる。
また、同期についても同様に、アプリケーションAにおいて同期開始イベントが検出されると、アプリケーションAからスレッドBに対しコヒーレント処理およびスレーブCPU102への通知をおこなう。このとき、スレーブCPU102では一時的にスレッドBが退避させられるが、すぐに復元する。そして、同期開始のタイミングになると、アプリケーションAおよびスレッドBが同期して実行される。
図4は、割込制御の具体例2を示すシーケンス図である。図4では、マスタCPU101においてアプリケーションA,XがOS110上でタイムスライス動作しており、スレーブCPU102にはスレッドBが実行されているものとする。そして、スレッドBがその親となるマスタプロセスではないアプリケーションXに排他をかける例である。
スレッドBがアプリケーションXに対する排他開始イベントを検出すると、OS110に通知する。OS110では、アプリケーションXの停止イベントを検出することとなり、それ以降は、OS110とアプリケーションAとでタイムスライス動作することとなる。このあと、スレッドBがアプリケ-ションXに対する排他終了イベントを検出すると、OS110に通知する。マスタCPU101では、その後、アプリケーションXが復元され、OS110、アプリケーションA,Xがタイムスライス動作することとなる。このように、スレーブCPU102で排他イベントが検出される場合でも、マルチコアプロセッサシステム100は問題なく動作することとなる。
図5は、割込制御の具体例3を示すシーケンス図である。図5では、マスタCPU101においてアプリケーションA,XがOS110上でタイムスライス動作しており、スレーブCPU102にはスレッドBが実行されているものとする。そして、スレッドBがその親となるマスタプロセスのアプリケーションAに排他をかける例である。
スレッドBがアプリケーションAに対する排他開始イベントを検出すると、OS110に通知する。OS110では、アプリケーションAの停止イベントを検出することとなり、それ以降は、OS110とアプリケーションXとでタイムスライス動作することとなる。このあと、スレッドBがアプリケ-ションAに対する排他終了イベントを検出すると、OS110に通知する。マスタCPU101では、その後、アプリケーションAが復元され、OS110、アプリケーションA,Xがタイムスライス動作することとなる。このように、スレーブCPU102で排他イベントが検出される場合でも、マルチコアプロセッサシステム100は問題なく動作することとなる。
図6は、割込制御の具体例4を示すシーケンス図である。図6は、図5において、OS110のスレッドキュー200にスレッドYが設定されている例である。スレッドBがアプリケーションAに対する排他開始イベントを検出すると、OS110に通知する。OS110では、アプリケーションAの停止イベントを検出することとなり、アプリケーションAが停止させられる。
図6では、このあと、OS110とアプリケーションXのタイムスライス動作となるが、アプリケーションXにおいてスレッドYを起動させたい場合、スレーブCPU102ではスレッドBが実行中であるため、スレッドYを実行できない。これにより、アプリケーションXの実行も中断することとなり、マスタCPU101ではOS110のみが実行されることとなる。
このあと、排他終了イベントがスレーブCPU102で検出されると、スレッドBからOS110に通知される。これにより、スレッドBが終了するとともに、マスタCPU101では、OS110、アプリケーションX,Aがタイムスライス動作することとなる。
このように、本実施の形態にかかるマルチコアプロセッサシステム100では、マスタCPU101とスレーブCPU102のうちどのCPUで排他や同期のイベントが発生しても、効率的な運用を図ることができる。
以上説明したように、本実施の形態にかかるマルチコアプロセッサシステム100、割込プログラム120、および割込方法によれば、OS110をマスタCPU101でのみ走行させ、スレーブCPU102には割込プログラム120を実行させているにすぎないため、低負荷での運用を図ることができる。
また、マスタCPU101からスレーブCPU102のスレッドに対し排他または同期をかけることで、実行中のスレッドを退避させるとともに、退避後の空き状態では実行待ちスレッドを割り当てて実行させる。これにより、スレーブCPU102では、休止状態の期間が大幅に短縮され効率的な運用を図ることができる。また、実行待ちスレッドがない場合には、低電力モードに移行するため、低消費電力化を図ることができる。
100 マルチコアプロセッサシステム
101 マスタCPU
102 スレーブCPU
103 メモリ
104 バス
120 割込プログラム
A,X アプリケーション
B,Y スレッド
101 マスタCPU
102 スレーブCPU
103 メモリ
104 バス
120 割込プログラム
A,X アプリケーション
B,Y スレッド
Claims (6)
- OSおよび複数のアプリケーションが実行される一のコアと前記複数のアプリケーションのスレッドが割り当てられる他のコアとを有するマルチコアプロセッサシステムであって、
前記複数のアプリケーションのうち一のアプリケーションにおいて発生したイベントを指定する割込信号を前記一のコアから受信する受信手段と、
前記受信手段によって受信された割込信号で指定されたイベントが、前記他のコアで現在実行中のスレッドに対する排他または同期の開始イベントであるか否かを判断する判断手段と、
前記判断手段によって前記開始イベントであると判断された場合、前記現在実行中のスレッドを前記他のコアから退避させる退避手段と、
前記複数のアプリケーションの実行待ちスレッド群のうち前記退避手段によって退避させられたスレッド以外の他のスレッドを前記他のコアの実行対象スレッドに割り当てる割当手段と、
を備えることを特徴とするマルチコアプロセッサシステム。 - 前記退避手段によって前記現在実行中のスレッドが退避させられた場合、前記実行待ちスレッド群の有無を特定する特定手段を備え、
前記割当手段は、
前記特定手段によって前記実行待ちスレッド群があると特定された場合、前記実行待ちスレッド群のうち前記退避手段によって退避させられたスレッド以外の他のスレッドを前記他のコアの実行対象スレッドに割り当てることを特徴とする請求項1に記載のマルチコアプロセッサシステム。 - 前記特定手段によって前記実行待ちスレッド群がないと特定された場合、前記他のコアを現在の電力よりも低電力の状態に設定する設定手段を備えることを特徴とする請求項2に記載のマルチコアプロセッサシステム。
- 前記割当手段は、
前記判断手段によって、前記割込信号で指定されたイベントが、前記退避手段によって退避させられたスレッドに対する排他または同期の終了イベントであると判断された場合、前記退避手段によって退避させられたスレッドを前記他のコアの実行対象スレッドに割り当てることを特徴とする請求項1~3のいずれか1つに記載のマルチコアプロセッサシステム。 - OSおよび複数のアプリケーションが実行される一のコアと前記複数のアプリケーションのスレッドが割り当てられる他のコアとを有するマルチコアプロセッサシステムにおいて、前記他のコアで実行される割込プログラムであって、
前記複数のアプリケーションのうち一のアプリケーションにおいて発生したイベントを指定する割込信号を前記一のコアから受信する受信工程と、
前記受信工程によって受信された割込信号で指定されたイベントが、前記他のコアで現在実行中のスレッドに対する排他または同期の開始イベントであるか否かを判断する判断工程と、
前記判断工程によって前記開始イベントであると判断された場合、前記現在実行中のスレッドを前記他のコアから退避させる退避工程と、
前記複数のアプリケーションの実行待ちスレッド群のうち前記退避工程によって退避させられたスレッド以外の他のスレッドを前記他のコアの実行対象スレッドに割り当てる割当工程と、
を前記他のコアに実行させることを特徴とする割込プログラム。 - OSおよび複数のアプリケーションが実行される一のコアと前記複数のアプリケーションのスレッドが割り当てられる他のコアとを有するマルチコアプロセッサシステムにおいて、前記他のコアが、
前記複数のアプリケーションのうち一のアプリケーションにおいて発生したイベントを指定する割込信号を前記一のコアから受信する受信工程と、
前記受信工程によって受信された割込信号で指定されたイベントが、前記他のコアで現在実行中のスレッドに対する排他または同期の開始イベントであるか否かを判断する判断工程と、
前記判断工程によって前記開始イベントであると判断された場合、前記現在実行中のスレッドを前記他のコアから退避させる退避工程と、
前記複数のアプリケーションの実行待ちスレッド群のうち前記退避工程によって退避させられたスレッド以外の他のスレッドを前記他のコアの実行対象スレッドに割り当てる割当工程と、
を実行することを特徴とする割込方法。
Priority Applications (5)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2012501551A JP5673666B2 (ja) | 2010-02-23 | 2010-02-23 | マルチコアプロセッサシステム、割込プログラム、および割込方法 |
PCT/JP2010/052733 WO2011104812A1 (ja) | 2010-02-23 | 2010-02-23 | マルチコアプロセッサシステム、割込プログラム、および割込方法 |
EP10846479.3A EP2541406A4 (en) | 2010-02-23 | 2010-02-23 | MULTIC UR PROCESSOR SYSTEM, INTERRUPT PROGRAM, AND INTERRUPTION METHOD |
CN201080063240.6A CN102754080B (zh) | 2010-02-23 | 2010-02-23 | 多核处理器系统、中断程序、以及中断方法 |
US13/591,857 US20120317403A1 (en) | 2010-02-23 | 2012-08-22 | Multi-core processor system, computer product, and interrupt method |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
PCT/JP2010/052733 WO2011104812A1 (ja) | 2010-02-23 | 2010-02-23 | マルチコアプロセッサシステム、割込プログラム、および割込方法 |
Related Child Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US13/591,857 Continuation US20120317403A1 (en) | 2010-02-23 | 2012-08-22 | Multi-core processor system, computer product, and interrupt method |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2011104812A1 true WO2011104812A1 (ja) | 2011-09-01 |
Family
ID=44506258
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/JP2010/052733 WO2011104812A1 (ja) | 2010-02-23 | 2010-02-23 | マルチコアプロセッサシステム、割込プログラム、および割込方法 |
Country Status (5)
Country | Link |
---|---|
US (1) | US20120317403A1 (ja) |
EP (1) | EP2541406A4 (ja) |
JP (1) | JP5673666B2 (ja) |
CN (1) | CN102754080B (ja) |
WO (1) | WO2011104812A1 (ja) |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN104081344A (zh) * | 2012-01-31 | 2014-10-01 | 西门子公司 | 用于运行处理器的方法 |
JP2016091076A (ja) * | 2014-10-30 | 2016-05-23 | 日本電気株式会社 | 情報処理装置 |
JP2017073000A (ja) * | 2015-10-07 | 2017-04-13 | 株式会社デンソー | 並列化方法、並列化ツール、車載装置 |
JP2017513111A (ja) * | 2014-03-27 | 2017-05-25 | インターナショナル・ビジネス・マシーンズ・コーポレーションInternational Business Machines Corporation | マルチスレッディング・コンピュータ・システムにおけるスレッド・コンテキスト保存のためのコンピュータ・システム、コンピュータ実装方法およびコンピュータ・プログラム製品 |
Families Citing this family (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN103440169B (zh) * | 2013-08-21 | 2017-07-28 | 华为技术有限公司 | 一种进程中断处理的方法及装置 |
CN114253679A (zh) * | 2020-09-24 | 2022-03-29 | 广州慧睿思通科技股份有限公司 | 中断事件处理方法、装置、计算机设备和存储介质 |
Citations (9)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH06149752A (ja) | 1992-11-12 | 1994-05-31 | Kubota Corp | 並列計算機のバリア同期方式 |
JPH06243102A (ja) | 1993-02-18 | 1994-09-02 | Hitachi Ltd | 多重情報処理システムの割込み同期方法 |
JPH0981526A (ja) * | 1995-09-08 | 1997-03-28 | Hitachi Ltd | マルチプロセッサシステム |
JPH09269934A (ja) * | 1996-04-02 | 1997-10-14 | Hitachi Ltd | 共有メモリのデータ一致化方法および伝送システム |
JP2005025726A (ja) | 2003-07-02 | 2005-01-27 | Arm Ltd | コヒーレント多重処理システムにおける電力制御 |
JP2005182223A (ja) * | 2003-12-17 | 2005-07-07 | Hitachi Ltd | 情報処理装置及びオペレーティングシステム |
JP2006185348A (ja) | 2004-12-28 | 2006-07-13 | Fujitsu Ltd | マルチプロセッサシステム及びロックフラグ操作方法 |
JP2006209480A (ja) * | 2005-01-28 | 2006-08-10 | Seiko Epson Corp | プロセッサおよび情報処理方法 |
JP2009277007A (ja) * | 2008-05-14 | 2009-11-26 | Mitsubishi Electric Corp | 計算機装置及びプログラム |
Family Cites Families (8)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPS4995548A (ja) * | 1973-01-12 | 1974-09-10 | ||
JP3969308B2 (ja) * | 2002-03-20 | 2007-09-05 | 日本電気株式会社 | シングルプロセッサ向けosによる並列処理システム |
US20060136919A1 (en) * | 2004-12-17 | 2006-06-22 | Sun Microsystems, Inc. | System and method for controlling thread suspension in a multithreaded processor |
US7882339B2 (en) * | 2005-06-23 | 2011-02-01 | Intel Corporation | Primitives to enhance thread-level speculation |
CN101013388A (zh) * | 2007-01-26 | 2007-08-08 | 浙江大学 | 面向异构多核体系的进程调度方法 |
CN100535865C (zh) * | 2007-09-20 | 2009-09-02 | 中兴通讯股份有限公司 | 一种用于多核多线程处理器的单线程复位方法 |
JP5453825B2 (ja) * | 2009-02-05 | 2014-03-26 | 日本電気株式会社 | プログラム並列実行システム、マルチコアプロセッサ上のプログラム並列実行方法 |
CN101561764B (zh) * | 2009-05-18 | 2012-05-23 | 华为技术有限公司 | 一种多核环境下的补丁方法与补丁装置 |
-
2010
- 2010-02-23 JP JP2012501551A patent/JP5673666B2/ja not_active Expired - Fee Related
- 2010-02-23 CN CN201080063240.6A patent/CN102754080B/zh not_active Expired - Fee Related
- 2010-02-23 WO PCT/JP2010/052733 patent/WO2011104812A1/ja active Application Filing
- 2010-02-23 EP EP10846479.3A patent/EP2541406A4/en not_active Withdrawn
-
2012
- 2012-08-22 US US13/591,857 patent/US20120317403A1/en not_active Abandoned
Patent Citations (9)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH06149752A (ja) | 1992-11-12 | 1994-05-31 | Kubota Corp | 並列計算機のバリア同期方式 |
JPH06243102A (ja) | 1993-02-18 | 1994-09-02 | Hitachi Ltd | 多重情報処理システムの割込み同期方法 |
JPH0981526A (ja) * | 1995-09-08 | 1997-03-28 | Hitachi Ltd | マルチプロセッサシステム |
JPH09269934A (ja) * | 1996-04-02 | 1997-10-14 | Hitachi Ltd | 共有メモリのデータ一致化方法および伝送システム |
JP2005025726A (ja) | 2003-07-02 | 2005-01-27 | Arm Ltd | コヒーレント多重処理システムにおける電力制御 |
JP2005182223A (ja) * | 2003-12-17 | 2005-07-07 | Hitachi Ltd | 情報処理装置及びオペレーティングシステム |
JP2006185348A (ja) | 2004-12-28 | 2006-07-13 | Fujitsu Ltd | マルチプロセッサシステム及びロックフラグ操作方法 |
JP2006209480A (ja) * | 2005-01-28 | 2006-08-10 | Seiko Epson Corp | プロセッサおよび情報処理方法 |
JP2009277007A (ja) * | 2008-05-14 | 2009-11-26 | Mitsubishi Electric Corp | 計算機装置及びプログラム |
Non-Patent Citations (1)
Title |
---|
See also references of EP2541406A4 * |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN104081344A (zh) * | 2012-01-31 | 2014-10-01 | 西门子公司 | 用于运行处理器的方法 |
JP2017513111A (ja) * | 2014-03-27 | 2017-05-25 | インターナショナル・ビジネス・マシーンズ・コーポレーションInternational Business Machines Corporation | マルチスレッディング・コンピュータ・システムにおけるスレッド・コンテキスト保存のためのコンピュータ・システム、コンピュータ実装方法およびコンピュータ・プログラム製品 |
JP2016091076A (ja) * | 2014-10-30 | 2016-05-23 | 日本電気株式会社 | 情報処理装置 |
JP2017073000A (ja) * | 2015-10-07 | 2017-04-13 | 株式会社デンソー | 並列化方法、並列化ツール、車載装置 |
Also Published As
Publication number | Publication date |
---|---|
EP2541406A1 (en) | 2013-01-02 |
CN102754080B (zh) | 2015-05-13 |
EP2541406A4 (en) | 2013-06-05 |
US20120317403A1 (en) | 2012-12-13 |
CN102754080A (zh) | 2012-10-24 |
JP5673666B2 (ja) | 2015-02-18 |
JPWO2011104812A1 (ja) | 2013-06-17 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US9335998B2 (en) | Multi-core processor system, monitoring control method, and computer product | |
US20150261581A1 (en) | Method, apparatus, and system for implementing hot migration of virtual machine | |
US7152169B2 (en) | Method for providing power management on multi-threaded processor by using SMM mode to place a physical processor into lower power state | |
US9798595B2 (en) | Transparent user mode scheduling on traditional threading systems | |
JP5673666B2 (ja) | マルチコアプロセッサシステム、割込プログラム、および割込方法 | |
JP5212360B2 (ja) | 制御プログラム、制御システムおよび制御方法 | |
US20090037927A1 (en) | Apparatus and method for direct switching of software threads | |
US9892481B2 (en) | CPU/GPU synchronization mechanism | |
RU2437144C2 (ru) | Способ устранения исключительной ситуации в одном из ядер многоядерной системы | |
US11194740B2 (en) | System and method for application migration for a dockable device | |
US20130097382A1 (en) | Multi-core processor system, computer product, and control method | |
JP2004326749A (ja) | マルチスレッド・プロセッサを単一スレッド・モード及び同時マルチスレッド・モードの間で動的に切り替える装置及び方法 | |
US20130152100A1 (en) | Method to guarantee real time processing of soft real-time operating system | |
JP2008108075A (ja) | タスク切替え制御方法及びコンピュータシステム | |
US20060212840A1 (en) | Method and system for efficient use of secondary threads in a multiple execution path processor | |
JP5867630B2 (ja) | マルチコアプロセッサシステム、マルチコアプロセッサシステムの制御方法、およびマルチコアプロセッサシステムの制御プログラム | |
US20100005275A1 (en) | Multiprocessing system | |
JP5996110B2 (ja) | 計算機システム及び制御方法 | |
JP5557612B2 (ja) | 計算機及び転送プログラム | |
JP5376042B2 (ja) | マルチコアプロセッサシステム、スレッド切り替え制御方法、およびスレッド切り替え制御プログラム | |
JP2010211506A (ja) | 不均一メモリアクセス機構を備えるコンピュータ、コントローラ、及びデータ移動方法 | |
US20220221991A1 (en) | Information processing device, control method, and computer-readable recording medium storing control program | |
US11461134B2 (en) | Apparatus and method for deferral scheduling of tasks for operating system on multi-core processor | |
JP2003263366A (ja) | スワッピング制御方法及びその実施装置並びにその処理プログラム | |
JP2008077388A (ja) | マルチプロセッサ制御システム、方法、およびプログラム |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
WWE | Wipo information: entry into national phase |
Ref document number: 201080063240.6 Country of ref document: CN |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 10846479 Country of ref document: EP Kind code of ref document: A1 |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2012501551 Country of ref document: JP |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2010846479 Country of ref document: EP |
|
NENP | Non-entry into the national phase |
Ref country code: DE |