JPH0390938A - Control system for task stack data - Google Patents

Control system for task stack data

Info

Publication number
JPH0390938A
JPH0390938A JP22781089A JP22781089A JPH0390938A JP H0390938 A JPH0390938 A JP H0390938A JP 22781089 A JP22781089 A JP 22781089A JP 22781089 A JP22781089 A JP 22781089A JP H0390938 A JPH0390938 A JP H0390938A
Authority
JP
Japan
Prior art keywords
task
stack data
stack
save
data
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.)
Pending
Application number
JP22781089A
Other languages
Japanese (ja)
Inventor
Tamaru Fukushima
福島 田丸
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.)
NEC Corp
Original Assignee
NEC 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 NEC Corp filed Critical NEC Corp
Priority to JP22781089A priority Critical patent/JPH0390938A/en
Publication of JPH0390938A publication Critical patent/JPH0390938A/en
Pending legal-status Critical Current

Links

Landscapes

  • Multi Processors (AREA)

Abstract

PURPOSE:To reduce the manhour for production of an application program by disusing a sorting process corresponding to the necessity/unnecessity for storage of the stack data and the fractionization of tasks. CONSTITUTION:The stack data on tasks are uniformly saved in a secondary storage 14 regardless of the attribute, etc., and then recovered at restart. In such a constitution, the using frequency can be reduced for the stack area of a main storage 12 without fractionizing the stack nor performing a sorting process according to the necessity/unnecessity for storage of the stack data. Thus it is possible to effectively evade the complication of an application program due to the fractionization of the stack and a sorting process of the stack data. Then the labor and the time can be reduced for production and the debug of the application program.

Description

【発明の詳細な説明】 (産業上の利用分野) 本発明は、オンライン・リアルタイム・システムなどに
適用されるタスク・スタックデータの管理方式に関する
ものである。
DETAILED DESCRIPTION OF THE INVENTION (Field of Industrial Application) The present invention relates to a task stack data management method applied to online real-time systems and the like.

(従来の技術) 従来、この種のオンライン・リアルタイム・システムで
は、並行処理される複数のタスクが扱うダイナミック・
データを格納するためのスタックエリアが主記憶上に設
けられる。このスタックエリアは、同時に多数のタスク
が存在しかつタスクの生存期間が長い場合にはその記憶
容量が過大になりがちである。そこで、これを避けるた
めに次のような方法が採用されている。
(Prior art) Traditionally, this type of online real-time system has a dynamic system that handles multiple tasks that are processed in parallel.
A stack area for storing data is provided on the main memory. This stack area tends to have an excessive storage capacity when a large number of tasks exist at the same time and the lifetime of the tasks is long. Therefore, in order to avoid this, the following method is adopted.

まず、タスク自身を細分化することにより個々のタスク
が扱うスタックデータ量の低減化が図られる。次に、各
タスクのスタックデータがタスク中断の前後における引
き継ぎの要否に応じて分類され、タスク中断の際に引き
継ぐ必要があるスタックデータのみがタスク中断期間中
保存され、引き継ぎ不要のスタックデータはタスク中断
時に廃棄させることによりタスク中断中のスタックデー
タ量の低減化が図られる。
First, by subdividing the tasks themselves, the amount of stack data handled by each task can be reduced. Next, the stack data of each task is classified according to whether it is necessary to take over before or after the task is interrupted, and only the stack data that needs to be taken over at the time of task interruption is saved for the duration of the task interruption, and the stack data that does not need to be taken over is By discarding the data when a task is interrupted, the amount of stack data during task interruption can be reduced.

(発明が解決しようとする課題) 上述した従来の方法では、スタックデータ量低減のため
に個々のタスクを細分化すると、タスク相互間の通信が
増大してアプリケーションプログラムの作成工数が増大
するという新たな問題が生じる。
(Problem to be Solved by the Invention) In the conventional method described above, a new problem arises in that when individual tasks are subdivided to reduce the amount of stack data, communication between tasks increases and the number of man-hours required to create an application program increases. A problem arises.

また、タスクのスタックデータをタスクの中断期間中の
保存の要否に応じて分類する処理は、アプリケーション
プログラムの作成時にこのアプリケーションプログラム
の処理の一環としてその負担において行なわれる。この
結果、アプリケーションプログラムが複雑化して作成工
数が増大しその作成が困難になると共に、プログラムの
バグが増大するという問題がある。
Furthermore, the process of classifying task stack data according to whether or not it is necessary to save it during a task suspension period is performed at the expense of the application program as part of the processing of the application program. As a result, there are problems in that the application program becomes complicated, the number of man-hours required to create it increases, making it difficult to create it, and the number of bugs in the program increases.

(課題を解決するための手段) まず、本発明によれば、スタックデータの保存の要否に
応じた分類処理とタスクの細分化の廃止により、アプリ
ケーションプログラムの作成工数の低減が図られる。
(Means for Solving the Problems) First, according to the present invention, the number of man-hours for creating an application program can be reduced by abolishing the classification process according to the necessity of saving stack data and the subdivision of tasks.

この分類処理と細分化の廃止に伴うスタックエリアのメ
モリ量の増大を回避するため、タスク中断期間中はその
スタックデータを主記憶上のスタックエリアには常駐さ
せず、このスタックエリアから二次記憶装置上のセーブ
エリアにセーブすると共にタスク再開時にこのセーブエ
リアから主記憶上のスタックエリアにリカバするセーブ
/リカバ方式が採用される。
In order to avoid an increase in the amount of memory in the stack area due to the abolition of classification processing and subdivision, the stack data is not made to reside in the stack area on main memory during a task suspension period, and is transferred from this stack area to secondary memory. A save/recover method is adopted in which data is saved in a save area on the device and recovered from this save area to a stack area in the main memory when the task is restarted.

しかしながら、この場合、タスクを実行するメインのC
PUがスタックデータのセーブとりカバとを行なうと、
本来のタスクの処理速度が相当低下する。そこで、本発
明によれば、スタックデータのセーブとりカバに専念す
る専用のCPUが設される。
However, in this case, the main C
When PU saves and covers stack data,
The processing speed of the original task is considerably reduced. Therefore, according to the present invention, a dedicated CPU is provided which is dedicated to saving and covering stack data.

更に、単一のメモリバスのもとではその使用権をめぐる
メインのCPUとセーブ/リカバ専用のCPUとの間の
競合に伴い一方のCPUに待ち合わせ状態が発生し、処
理能力の向上が期待できなくなる。そこで、本発明によ
れば、スタック用の主記憶として双方向から独立にアク
セス可能な2個のメモリバスを備えたデュアルポート・
メモリが設置され、一方のポートからのアクセス権はメ
インのCPUに、他方のポートからのアクセス権はセー
ブ/リカバ専用のCPUに割当てられる。
Furthermore, under a single memory bus, competition between the main CPU and the CPU dedicated to save/recovery for the right to use the memory bus causes one CPU to enter a waiting state, and an improvement in processing performance cannot be expected. It disappears. According to the present invention, the main memory for the stack is a dual-port memory bus equipped with two memory buses that can be accessed independently from both directions.
A memory is installed, and access rights from one port are assigned to the main CPU, and access rights from the other port are assigned to a CPU dedicated to save/recovery.

この結果、デュアルポート・メモリ内のスタックデータ
のセーブとりカバはセーブ/リカバ専用のCPUがメイ
ンCPUの処理への影響を与えることなく、独立に処理
することができ、メインCPUの処理速度が維持される
As a result, the CPU dedicated to save/recovery can independently process the save/recovery of stack data in dual-port memory without affecting the main CPU's processing, maintaining the main CPU's processing speed. be done.

以下、本発明の作用を実施例と共に詳細に説明する。Hereinafter, the operation of the present invention will be explained in detail together with examples.

(実施例) 第1図は、本発明の一実施例に係わるタスク・スタック
データの管理方式を適用するオンライン・リアルタイム
・システムの構成を示すブロック図でありる。
(Embodiment) FIG. 1 is a block diagram showing the configuration of an online real-time system to which a task stack data management method according to an embodiment of the present invention is applied.

10はタスクを実行するメインCPU、11はタスク・
スタックデータが格納されるデュアルポート型の主記憶
(デュアルポート・メモリ)、12はプログラムやデー
タなどが格納されるシングルポート型の主記憶装置(メ
モリ)、13はセーブ/リカバ専用CPU、14は二次
記憶装置、15.16はメモリバスである。
10 is the main CPU that executes the task, 11 is the task/
A dual-port main memory (dual-port memory) in which stack data is stored, 12 a single-port main memory (memory) in which programs and data are stored, 13 a save/recover dedicated CPU, 14 a The secondary storage device 15.16 is a memory bus.

デュアルポート・メモリ11は、メモリバス15と16
のいずれを介しても読出し、書込みが可能な2個のアク
セスポートを有し、これにセーブ/リカバが行なわれる
タスク・スタックデータが格納される。
Dual port memory 11 has memory buses 15 and 16
It has two access ports that can be read from and written to through either of them, and task stack data to be saved/recovered is stored in these ports.

第2図は、デュアルポート・メモリ11上のスタックエ
リアと、二次記憶装置14上のセーブエリアとの対応を
示している。デュアルポート・メモリ11上には、タス
ク実行中の読み書きとスタックデータのセーブ/リカバ
との同時処理が可能なm面のスタックエリアが形成され
、二次記憶装置14上には中断中の全タスクのスタック
データがセーブ可能なn面のセーブエリアが形成される
FIG. 2 shows the correspondence between the stack area on the dual-port memory 11 and the save area on the secondary storage device 14. An m-plane stack area is formed on the dual-port memory 11 that allows simultaneous processing of reading and writing during task execution and saving/recovering stack data, and all suspended tasks are stored on the secondary storage device 14. An n-plane save area is formed in which stack data of .

一般に、デュアルポート・メモリ11上のスタックエリ
ア数よりも大きな数のセーブエリアが二次記憶装置14
上に確保される。
Generally, there are a larger number of save areas on the secondary storage device 14 than the number of stack areas on the dual-port memory 11.
Secured above.

第3図は、タスクの実行の流れを示す流れ線図である。FIG. 3 is a flow diagram showing the flow of task execution.

タスク実行受付キュー50と、タスク実行待ちキュー5
1はタスクの実行を制御するキューであり、スタックデ
ータ・リカバ要求キュー52と、スタックデータ・リカ
バ終了通知キュー53と、スタックデータ・セーブ要求
キュー54と、スタックデータセーブ終了通知キュー5
5は、メインCPUl0とセーブ/リカバ専用CPUI
 3とがセーブ/リカバ処理に関する通信を行うために
使用するハードウェア・キューである。
Task execution acceptance queue 50 and task execution waiting queue 5
1 is a queue for controlling the execution of tasks, and includes a stack data recovery request queue 52, a stack data recovery completion notification queue 53, a stack data save request queue 54, and a stack data save completion notification queue 5.
5 is the main CPU10 and the save/recovery CPU
3 is a hardware queue used for communication regarding save/recover processing.

以下、タスクの生成、中断、再開、消滅に伴い各タスク
で使用するタスク・スタックデータがどのように管理さ
れるかについて説明する。全てのタスクについて、その
中断時にタスク・スタックデータがセーブされ、その再
開時にタスク・スタックデータがリカバされるが、その
詳細は次のようになる。
The following describes how the task stack data used by each task is managed when the task is created, interrupted, restarted, or destroyed. For all tasks, task stack data is saved when the task is suspended, and task stack data is recovered when the task is resumed.The details are as follows.

まず、タスクの生成要求が発生するとタスク実行受付キ
ュー50にタスクが登録され、こののちタスク実行受付
キュー50からタスクが取り出され、デュアルポート・
メモリll上の適宜な空きスタックエリア(この例では
スタックエリア31とする)が探索され補足される。セ
ーブ中のスタックエリアは、使用中のスタックエリアと
して扱われる。次に、タスク・スタックデータのリカバ
の要否が判定される。タスク生成時には、リカバ対象の
スタックデータが存在しないためリカバネ要と判定され
、タスク実行待ちキュー51にタスクのみが登録され、
その実行待ち状態となる。
First, when a task generation request occurs, the task is registered in the task execution acceptance queue 50, and then the task is taken out from the task execution acceptance queue 50.
An appropriate free stack area (in this example, stack area 31) on memory 1 is searched for and supplemented. A stack area that is being saved is treated as a stack area that is in use. Next, it is determined whether the task stack data needs to be recovered. When the task is generated, it is determined that recovery is required because there is no stack data to be recovered, and only the task is registered in the task execution queue 51.
The system waits for its execution.

この後、タスク実行の順番がまわってくると、タスク実
行待ちキュー51からタスクが取り出され、捕捉中のス
タックエリア31を使用して実行が開始され、タスクは
実行状態になる。タスク実行途中でその中断要求がある
と、スタックデータ・セーブ要求キュー54に、タスク
・スタックデータをセーブするためのセーブ制御情報と
共にスタックデータ・セーブ要求が登録される。スタッ
クデータ・セーブ要求キュー54にスタックデータ・セ
ーブ要求が登録されると、セーブ/リカバ専用CPU1
3は、このセーブ要求に付加されたセーブ制御情報をも
とに、デュアルポート・メモリ11上のスタックエリア
31内のスタックデータを、二次記憶装置14上に捕捉
・確保した対応のセーブエリア(この例ではセーブエリ
ア41とする)に転送する。この転送情報は、スタック
エリア全てではなく、使用したタスク・スタックデータ
のみとする。
Thereafter, when it is the task's turn to execute, the task is taken out from the task execution queue 51, execution begins using the stack area 31 that is being captured, and the task enters the execution state. When a request to interrupt a task is made during execution, a stack data save request is registered in the stack data save request queue 54 together with save control information for saving the task stack data. When a stack data save request is registered in the stack data save request queue 54, the save/recovery CPU 1
3, based on the save control information added to this save request, the stack data in the stack area 31 on the dual port memory 11 is captured and secured in the corresponding save area ( In this example, the data is transferred to the save area 41). This transfer information does not include the entire stack area, but only the used task/stack data.

なお、二次記憶装置14上のタスクに対応した一つのセ
ーブエリア面のサイズは可変であり、タスク中断時に転
送されるタスク・スタックデータのサイズ分のセーブエ
リアが捕捉処理によりそのつと確保され、セーブエリア
の有効利用が図られる。また、セーブ/リカバ専用CP
U13がスタックデータのセーブ中であってもメインC
PUl0は他の実行要求タスクが存在すればこのタスク
の実行を開始し、アイドル状態とはならない。
Note that the size of one save area surface corresponding to a task on the secondary storage device 14 is variable, and a save area corresponding to the size of the task stack data transferred when the task is interrupted is secured for each task by the capture process. The save area can be used effectively. In addition, save/recovery CP
Even if U13 is saving stack data, main C
If there is another task requesting execution, PU10 starts executing this task and does not enter an idle state.

セーブ/リカバ専用CPU13は、スタックデータの転
送処理を終了すると、スタックデータ・セーブ終了通知
キュー55にセーブ終了通知を登録する。メインcpu
toはスタックデータ・セーブ終了通知キュー55を介
してスタックデータのセーブ終了通知を受けると、スタ
ックデータのセーブ要求を発したタスクを中断状態に移
行させると共に、デュアルポート・メモリ11上のスタ
ックエリア31を開放する。この状態では、スタックデ
ータは二次記憶装置14上のセーブエリア41のみに存
在することとなる。
When the save/recovery dedicated CPU 13 finishes the stack data transfer process, it registers a save completion notification in the stack data/save completion notification queue 55. main cpu
When to receives the stack data save completion notification via the stack data save completion notification queue 55, it shifts the task that issued the stack data save request to the suspended state, and also transfers the stack area 31 on the dual port memory 11 to the suspended state. to open. In this state, the stack data exists only in the save area 41 on the secondary storage device 14.

この後、中断タスクの再開要求が発生すると、これがタ
スク実行受付キュー50に再登録される。
Thereafter, when a request to resume the suspended task occurs, it is re-registered in the task execution acceptance queue 50.

次に、タスク実行受付キュー50からタスクが取り出さ
れ、適宜な空きスタックエリア(この例では空きスタッ
クエリア33とする)が捕捉により確保された後、タス
ク・スタックデータのリカバの要否が判定される。中断
タスクの再開時には、スタックデータのリカバが必要と
判定され、制御情報と共にスタックデータ・リカバ要求
が対応の要求キュー52に登録される。メインCPUl
0は、この後スタックデータのリカバが終了するまで、
他のタスクを実行する。一方、セーブ/リカバ専用CP
U13は、スタックデータ・リカバ要求キュー52にリ
カバ要求が登録されると、制御情報をもとにタスク・ス
タックデータを二次記憶装置14上のセーブエリア41
から指定されたスタックエリア33に転送を開始する。
Next, the task is taken out from the task execution acceptance queue 50, and after an appropriate free stack area (in this example, the free stack area 33) is secured by capture, it is determined whether the task/stack data needs to be recovered. Ru. When the suspended task is restarted, it is determined that stack data recovery is necessary, and a stack data recovery request is registered in the corresponding request queue 52 along with control information. Main CPU
0 means that after this, until stack data recovery is completed,
Perform other tasks. On the other hand, save/recovery CP
When the recovery request is registered in the stack data recovery request queue 52, U13 saves the task stack data to the save area 41 on the secondary storage device 14 based on the control information.
Transfer to the designated stack area 33 is started.

セーブ/リカバ専用CPU13は、タスク・スタックデ
ータの転送が終了すると、使用していたセーブエリア4
1を開放すると共にスタックデータ・リカバ終了通知を
、スタックデータ・リカバ終了通知キュー53に登録す
る。スタックデータ・リカバ終了通知キュー53を介し
てリカバの終了がメインCPUl0に通知されると、タ
スクはタスク実行待ちキュー51に再登録され、タスク
実行待ちの状態となる。
When the save/recovery CPU 13 finishes transferring the task/stack data, the save/recovery CPU 13 saves the save area 4 that was being used.
1 and registers a stack data recovery completion notification in the stack data recovery completion notification queue 53. When the main CPU 10 is notified of the completion of recovery via the stack data recovery completion notification queue 53, the task is re-registered in the task execution waiting queue 51 and enters a task execution waiting state.

続いて、このタスクの実行順番が来ると、タスク実行待
ちキュー51から取り出され、その実行がスタックエリ
ア33内にリカバ済みのスタ・ツクデータを使用して開
始される。この後、タスクからの実行中断要求がなけれ
ば、その実行は終了し、スタックエリア33は開放され
てこのタスクは消滅し、タスク処理はすべて終了する。
Subsequently, when this task's turn to execute comes, it is taken out from the task execution queue 51 and its execution is started using the stack data recovered in the stack area 33. After this, if there is no execution interruption request from the task, the execution ends, the stack area 33 is released, the task disappears, and all task processing ends.

以上説明したように、タスクの実行中断時にスタックデ
ータがセーブされ、またタスクの実行再開時にスタック
データがリカバされる。一つのタスクに注目すると、ス
タックデータのセーフ゛とリカバに時間がかかりタスク
の実行が遅延するようにみえるが、この時間は極く短い
ため実用的な問題とはならない。また、多数のタスクの
併存状況下では、あるタスクに関するスタックデータの
セーブ/リカバ中に他のタスクの実行が可能なため、結
果的にスタックデータのセーブとりカバのための負担は
メインCPUl0にはかからず、その処理能力は低下し
ない。
As explained above, stack data is saved when execution of a task is interrupted, and stack data is recovered when execution of a task is resumed. When focusing on a single task, it seems that it takes time to secure and recover the stack data, delaying the execution of the task, but this time is extremely short and does not pose a practical problem. In addition, in a situation where many tasks coexist, other tasks can be executed while stack data related to a certain task is being saved/recovered, so as a result, the burden of saving and recovering stack data is placed on the main CPU10. However, the processing capacity does not decrease.

以上、オンライン・リアルタイム・システムへの適用に
ついて本発明を例示した。しかしながら、複数のタスク
が並行処理されるバッジ処理システムなどにも本発明に
係わるタスク・スタックデータの管理方式を適用するこ
とができる。
The present invention has been exemplified above as applied to an online real-time system. However, the task stack data management method according to the present invention can also be applied to a badge processing system where a plurality of tasks are processed in parallel.

(発明の効果) 以上詳細に説明したように、本発明に係わるタスク・ス
タックデータの管理方式は、タスク中断時にそのスタッ
クデータを属性などに無関係に一律に二次記憶装置にセ
ーブし再開時にリカバする構成であるから、タスクの細
分化やスタックデータの保存の要否に基づく分類処理に
よることなく主記憶上のスタックエリアの使用量を大幅
に低減するとかできる。
(Effects of the Invention) As explained in detail above, the task stack data management method according to the present invention uniformly saves the stack data in the secondary storage device when a task is interrupted, regardless of its attributes, and recovers it when restarting. Because of this configuration, it is possible to significantly reduce the usage of the stack area on the main memory without subdividing tasks or performing classification processing based on whether or not storage of stack data is necessary.

このため、スタックの細分化やスタックデータの分類処
理に伴うアプリケーション・プログラムの煩雑化が有効
に回避され、その作成とデバッグのための労力と時間が
大幅に低減される。
Therefore, the complexity of the application program caused by stack subdivision and stack data classification processing is effectively avoided, and the effort and time required to create and debug it are significantly reduced.

【図面の簡単な説明】[Brief explanation of drawings]

第1図は本発明の一実施例に係わるタスク・スタックデ
ータの管理方式を適用するオンライン・リアルタイム・
システムの構成を示すブロック図、第2図は第1図のデ
ュアルポート・メモリll上のスタックエリアと二次記
憶装置14上のセーブエリアとの対応を説明するための
概念図、第3図はタスク実行の流れを示す流れ線図であ
る。
FIG. 1 shows an online real-time system that applies the task stack data management method according to an embodiment of the present invention.
FIG. 2 is a block diagram showing the configuration of the system. FIG. 2 is a conceptual diagram for explaining the correspondence between the stack area on the dual port memory 1 in FIG. 1 and the save area on the secondary storage device 14. FIG. It is a flow diagram showing the flow of task execution.

Claims (1)

【特許請求の範囲】 複数のタスクを並行して実行するメインCPUと、 前記タスクのそれぞれで使用されるタスク・スタックデ
ータが前記メインCPUによって一方のポートを介して
スタックエリア内に格納されるデュアルポート型の主記
憶装置と、 タスク中断時に前記主記憶装置内のタスク・スタックデ
ータを他方のポートを介して二次記憶装置にセーブする
と共に、タスク再開時に二次記憶装置から他方のポート
を介してリカバするセーブ/リカバ専用CPUとを備え
たことを特徴とするタスク・スタックデータの管理方式
[Scope of Claims] A main CPU that executes a plurality of tasks in parallel; and a dual CPU in which task stack data used by each of the tasks is stored in a stack area by the main CPU through one port. A port-type main memory device, and when a task is interrupted, the task stack data in the main memory device is saved to a secondary storage device through the other port, and when the task is restarted, the task stack data is saved from the secondary storage device through the other port. A task/stack data management method characterized by comprising a CPU dedicated to save/recovery for recovery.
JP22781089A 1989-09-02 1989-09-02 Control system for task stack data Pending JPH0390938A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP22781089A JPH0390938A (en) 1989-09-02 1989-09-02 Control system for task stack data

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP22781089A JPH0390938A (en) 1989-09-02 1989-09-02 Control system for task stack data

Publications (1)

Publication Number Publication Date
JPH0390938A true JPH0390938A (en) 1991-04-16

Family

ID=16866737

Family Applications (1)

Application Number Title Priority Date Filing Date
JP22781089A Pending JPH0390938A (en) 1989-09-02 1989-09-02 Control system for task stack data

Country Status (1)

Country Link
JP (1) JPH0390938A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6835442B2 (en) 2001-01-22 2004-12-28 Sony Chemicals Corp. Flexible printed wiring board

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6835442B2 (en) 2001-01-22 2004-12-28 Sony Chemicals Corp. Flexible printed wiring board

Similar Documents

Publication Publication Date Title
US6625639B1 (en) Apparatus and method for processing a task in a clustered computing environment
US5257372A (en) Methods for efficient distribution of parallel tasks to slave processes in a multiprocessing system
JPH04348451A (en) Parallel computer
US4851992A (en) Register/saving/restoring system for saving and restoring data in a register of a slave processor
JP3970609B2 (en) Processor system
JPH0390938A (en) Control system for task stack data
JP3456443B2 (en) Parallel sorting apparatus and recording medium recording program of the apparatus
JPS61134863A (en) Data processor
JP2008015638A (en) Data processor
JPS6049464A (en) Inter-processor communication system of multi-processor computer
JPH05233525A (en) Input/otuput processor
JP2501393B2 (en) Direct memory access device
JPH10507548A (en) Data processing systems and methods and communication systems with such systems
JPH03231338A (en) Control system for memory dump area
JPH04155532A (en) Task switching system
JPH02129724A (en) Program executing system
JPH10177493A (en) Graphic processing system
JPH09212471A (en) Device and method for parallel processing program execution
JPH04302352A (en) Multi processor system
JPH05113888A (en) Microprocessor unit
JPH02109147A (en) Memory dump collection system
JPS58175189A (en) Information processing system
JPH06274527A (en) Vector processor
JPH03126134A (en) Task switching system for cpu
JPH0343841A (en) Fault information store system