JPH07182186A - Effective using method for semaphore - Google Patents

Effective using method for semaphore

Info

Publication number
JPH07182186A
JPH07182186A JP5325294A JP32529493A JPH07182186A JP H07182186 A JPH07182186 A JP H07182186A JP 5325294 A JP5325294 A JP 5325294A JP 32529493 A JP32529493 A JP 32529493A JP H07182186 A JPH07182186 A JP H07182186A
Authority
JP
Japan
Prior art keywords
event
semaphore
storage area
operations
events
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
JP5325294A
Other languages
Japanese (ja)
Inventor
Yukako Hidaka
由佳子 日高
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.)
Toshiba Corp
Original Assignee
Toshiba 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 Toshiba Corp filed Critical Toshiba Corp
Priority to JP5325294A priority Critical patent/JPH07182186A/en
Publication of JPH07182186A publication Critical patent/JPH07182186A/en
Pending legal-status Critical Current

Links

Abstract

PURPOSE:To eliminate such processing that becomes impracticable due to a limited number of semaphores and also to know the occurrence of plural V operations (events) by a single P operation (cancle of waiting). CONSTITUTION:When plural V operations are carried out to a single semaphore 50, an event writing mechanism a20 is prepared to write a specific event into a prescribed storage area 60 for each V operation. Furthermore an event reading mechanism b20 is added to refer to the area 60 and to read a specific event out of the area 60 to which a V operation is carried out in response to a P operation, together with an event canceling mechanism b30 which finishes the processing against the read event and erases the contents of the relevant event written in the area 60. Therefore it is not needed to prepare the semaphores 50 for each event and a single semaphore 50 can be effectively used.

Description

【発明の詳細な説明】Detailed Description of the Invention

【0001】[0001]

【産業上の利用分野】本発明は、複数の事象の発生をセ
マフォを利用して通知するプログラム等を実行するコン
ピュータシステムにおけるセマフォの有効利用方法に関
する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a method for effectively using a semaphore in a computer system that executes a program or the like for notifying the occurrence of a plurality of events by using the semaphore.

【0002】[0002]

【従来の技術】一般に、マルチプロセッサシステム等に
おいては、複数のプロセスを制御する同期機構としてセ
マフォ(semaphore )が用いられている。セマフォに対
しては、2つの操作、すなわちPオペレーションまたは
Vオペレーションを行なうことができる。
2. Description of the Related Art Generally, in a multiprocessor system or the like, a semaphore is used as a synchronization mechanism for controlling a plurality of processes. Two operations can be performed on a semaphore, a P operation or a V operation.

【0003】Pオペレーションは、ある事象が発生して
いるか否かをチェックする命令であり、事象が既に発生
している場合には待ち状態となる。Vオペレーション
は、ある事象の発生を通知するもので、Pオペレーショ
ンを行なった相手の待ちを解除する。この2つの操作を
利用して、セマフォは資源の排他制御などに使うことが
できる。
The P operation is an instruction for checking whether or not an event has occurred, and when an event has already occurred, it enters a waiting state. The V operation notifies the occurrence of a certain event, and releases the waiting of the partner who has performed the P operation. By using these two operations, the semaphore can be used for exclusive control of resources.

【0004】Pオペレーションを行なうことは、何等か
の事象が起きたことを待って、その事象が発生したとき
に待ちをVオペレーションによって解除したいというこ
とである。
Performing a P operation means waiting for some event to occur and canceling the wait by the V operation when the event occurs.

【0005】以下の説明では、このPオペレーションで
待ちを行なう必要のある事象を事象X、事象Yとして示
す。ここで、Pオペレーションを行なう前にVオペレー
ションが複数回行われていても、一度のVオペレーショ
ンしか有効にならないようなセマフォの機構であった場
合、または、一つのセマフォを使っているときにどの事
象に対するVオペレーションであるのかの区別がつかな
い場合には、以下のような状況が発生する(図3参
照)。
In the following description, the events that need to be waited for in this P operation are shown as event X and event Y. Here, if the semaphore mechanism is such that only one V operation is valid even if the V operation is performed multiple times before the P operation is performed, or if one semaphore is used, When it is impossible to distinguish whether the operation is a V operation for an event, the following situation occurs (see FIG. 3).

【0006】プロセスAからプロセスBへ、事象Xを通
知したいVオペレーションと事象Yを通知したいVオペ
レーションとがある場合、Vオペレーションが一度しか
通知されなければ、事象Xが起きたときに待ち状態を解
除する、事象Yが起きたときに待ち状態を解除する、と
いう事象を見分けることができない。
If there is a V operation that wants to notify event X and a V operation that wants to notify event Y from process A to process B, if the V operation is notified only once, the wait state is set when event X occurs. It is impossible to distinguish the event of canceling and canceling the waiting state when the event Y occurs.

【0007】このため、事象Xと事象Yに関係するセマ
フォを分けて、それぞれのセマフォに対してVオペレー
ション、Pオペレーションを行わなければならない。図
3に示すように、事象X、事象Yに関係するセマフォを
分けることにより、どのセマフォに関して待ちが解除さ
れたかで、事象Xが発生したのか、事象Xが発生したの
かを知ることができる。
Therefore, it is necessary to separate the semaphores related to the event X and the event Y and perform the V operation and the P operation for each semaphore. As shown in FIG. 3, by separating the semaphores related to the event X and the event Y, it is possible to know whether the event X has occurred or the event X has occurred depending on which semaphore the wait has been released.

【0008】[0008]

【発明が解決しようとする課題】ところで、複数の異な
る意味のVオペレーションが、Pオペレーション前に起
きる可能性のある場合、事象ごとにセマフォを分けない
とVオペレーションが上書きされてしまう。これを回避
するためには、前述したように事象の数だけセマフォが
あれば問題がない。
If a plurality of V operations having different meanings may occur before the P operation, the V operation will be overwritten unless the semaphore is divided for each event. In order to avoid this, there is no problem if there are as many semaphores as the number of events as described above.

【0009】しかしながら、通常、セマフォにはシステ
ム毎で数に限度がある。従って、事象毎にセマフォを分
けてしまうと、システムで使用するセマフォが足りなく
なることがある。
However, normally, the number of semaphores is limited in each system. Therefore, if the semaphore is divided for each event, there may be insufficient semaphores used in the system.

【0010】また、例えば2つの事象(Vオペレーショ
ン)の発生を知るには、各事象のセマフォにそれぞれ待
ち(Pオペレーション)を行なう必要がある(すなわち
2度の待ち(Pオペレーション))。
Further, for example, in order to know the occurrence of two events (V operation), it is necessary to wait (P operation) for each semaphore (that is, wait twice (P operation)).

【0011】本発明は前記のような事情を考慮してなさ
れたもので、セマフォの個数制限による実行不可能な処
理をなくすと共に、一度のPオペレーション(待ち解
除)で複数のVオペレーション(事象)の発生を知るこ
とが可能なセマフォの有効利用方法を提供することを目
的とする。
The present invention has been made in consideration of the above circumstances, and eliminates inexecutable processing due to the limitation of the number of semaphores, and also allows a plurality of V operations (events) with one P operation (wait release). The purpose is to provide an effective use method of a semaphore capable of knowing the occurrence of.

【0012】[0012]

【課題を解決するための手段】本発明は、1つのセマフ
ォ(semaphore )に対して複数のVオペレーションを行
なう場合に、前記セマフォに対する各Vオペレーション
に応じて、どの事象に対するものかをVオペレーション
毎に所定の記憶領域に書き込むステップと、前記セマフ
ォに対するPオペレーションに応じて、前記記憶領域を
参照して、どの事象に対するVオペレーションが行われ
たのかを記憶領域から読み込むステップと、読み込んだ
事象に関する処理を終わって、関係する事象の前記記憶
領域に対する書き込みの内容を消去するステップとを設
けることにより、セマフォを事象ごとに用意する必要が
なくなり、1つのセマフォを有効利用できることを特徴
とする。
According to the present invention, when a plurality of V operations are performed on one semaphore, it is determined for each V operation which event it corresponds to, depending on each V operation for the semaphore. To a predetermined storage area, referring to the storage area according to the P operation for the semaphore, reading from the storage area which event the V operation was performed for, and processing relating to the read event And the step of erasing the contents of the writing of the related event in the storage area, there is no need to prepare a semaphore for each event, and one semaphore can be effectively used.

【0013】また、前記セマフォに対する一度のPオペ
レーションに応じて、複数のVオペレーションに応じた
前記記憶領域への書き込みの内容を読み込むことを特徴
とする。
Further, it is characterized in that the contents of writing to the storage area corresponding to a plurality of V operations are read in response to one P operation for the semaphore.

【0014】さらに、前記複数のVオペレーションに
は、複数の同じ事象に対するVオペレーション、または
異なる事象が複数ある場合にそれぞれの事象に対するV
オペレーションを含むことを特徴とする。
Further, among the plurality of V operations, there are V operations for a plurality of the same events, or when there are a plurality of different events, a V operation for each event.
It is characterized by including an operation.

【0015】[0015]

【作用】このような方法によれば、セマフォの数に制限
があり、1つのセマフォに対して複数のVオペレーショ
ンが行なわれる場合に、各Vオペレーションに応じて、
どの事象に対するVオペレーションが行なわれたのかが
記憶領域に書き込まれる。従って、Vオペレーションに
よってセマフォの内容が上書きされ、一度のVオペレー
ションしか有効にならなくても、Pオペレーションに応
じてセマフォを参照することで複数のVオペレーション
の発生を知ることができる。
According to such a method, when the number of semaphores is limited and a plurality of V operations are performed on one semaphore, each V operation is
The event for which the V operation was performed is written in the storage area. Therefore, even if the contents of the semaphore are overwritten by the V operation and only one V operation is valid, the occurrence of a plurality of V operations can be known by referring to the semaphore according to the P operation.

【0016】また、各Vオペレーションについて、事象
毎にセマフォに対する操作内容を記憶しているので、P
オペレーションに応じて記憶領域を参照する際、全ての
書き込みの内容を読み込むことで、本来、1つのセマフ
ォであれば1つのVオペレーションしか有効にならない
ものが、1つのPオペレーションで複数のVオペレーシ
ョンの内容を有効とすることができる。
Further, for each V operation, the operation content for the semaphore is stored for each event, so P
When referring to the storage area according to the operation, by reading all the write contents, originally, only one V operation is valid for one semaphore. The content can be valid.

【0017】[0017]

【実施例】以下、図面を参照して本発明の一実施例を説
明する。図1は本発明のセマフォの有効利用方法を説明
するための図である。ここでは、Vオペレーションを行
なうプロセスAと、Pオペレーションを行なうプロセス
Bがあるものとする。
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS An embodiment of the present invention will be described below with reference to the drawings. FIG. 1 is a diagram for explaining an effective use method of a semaphore of the present invention. Here, it is assumed that there is a process A that performs V operation and a process B that performs P operation.

【0018】プロセスAは、Vオペレーション機構a1
0、事象書き込み機構A20を有している。また、プロ
セスBは、Vオペレーション機構b10、事象書き込み
機構b20、及び事象取消機構b30を有しているもの
とする。各プロセスA,Bに設けられた各機構は、セマ
フォ50及び記憶領域60に対して操作を行なう。
Process A is V operation mechanism a1.
0, the event writing mechanism A20. Further, the process B is assumed to have a V operation mechanism b10, an event writing mechanism b20, and an event canceling mechanism b30. The mechanisms provided in the processes A and B operate the semaphore 50 and the storage area 60.

【0019】Vオペレーション機構a10は、セマフォ
50に対してVオペレーションを実行するためのモジュ
ールである。Pオペレーション機構b10は、セマフォ
50に対してPオペレーションを実行するためのモジュ
ールである。
The V operation mechanism a10 is a module for executing a V operation on the semaphore 50. The P operation mechanism b10 is a module for executing a P operation on the semaphore 50.

【0020】事象書き込み機構a20は、Vオペレーシ
ョン機構a10によるセマフォ50に対するVオペレー
ションに応じて、どの事象が起きたかを記憶領域60に
書き込むためのモジュールである。
The event writing mechanism a20 is a module for writing in the storage area 60 which event has occurred according to the V operation to the semaphore 50 by the V operation mechanism a10.

【0021】事象読み込み機構b20は、Pオペレーシ
ョン機構b10によるセマフォ50に対するPオペレー
ションに応じて、どの事象が起きたかを記憶領域60か
ら読み込むためのモジュールである。
The event reading mechanism b20 is a module for reading which event has occurred from the storage area 60 in accordance with the P operation for the semaphore 50 by the P operation mechanism b10.

【0022】事象取消機構b30は、通知された事象に
対する処理が終了したときに、次のVオペレーションに
備えて記憶領域60の記憶を消去するためのモジュール
である。
The event canceling mechanism b30 is a module for erasing the memory of the memory area 60 in preparation for the next V operation when the processing for the notified event is completed.

【0023】また、図1中、符号a01はVオペレーシ
ョン、符号b01はPオペレーション、符号a02は記
憶領域60への書き込み、符号b02は記憶領域60か
らの読み込み、符号b03は記憶領域60の記憶消去の
操作を示している。
In FIG. 1, reference numeral a01 is a V operation, reference numeral b01 is a P operation, reference numeral a02 is a write to the storage area 60, reference numeral b02 is a read from the storage area 60, and reference numeral b03 is a storage erase of the storage area 60. It shows the operation of.

【0024】なお、図1は、プロセスAからプロセスB
へ事象の通知がある場合の例を示すもので、プロセスB
からプロセスAへ通知する事象がある場合は、プロセス
A,Bが互いのプロセスの構成を有していれば良い。
In FIG. 1, process A to process B
It shows an example when there is a notification of an event to process B
When there is an event to notify the process A from the process A, it is sufficient that the processes A and B have the configuration of each process.

【0025】次に、本実施例の動作について説明する。
従来では、Pオペレーションの前にVオペレーションを
何度も行なった場合、Vオペレーションによる操作の内
容がセマフォに上書きされてしまうため一度しか有効と
ならない。
Next, the operation of this embodiment will be described.
Conventionally, if the V operation is performed many times before the P operation, the contents of the operation by the V operation are overwritten on the semaphore, so that it is effective only once.

【0026】そこで、本発明では、同時に発生する異な
る事象のVオペレーションがある場合、どの事象が発生
しているかどうかを記憶領域60に記憶し、過去にどの
ような事象のVオペレーションが行われていたのかを保
持しておくことによって、一度のVオペレーションによ
り過去のVオペレーションの発生を全て知ることができ
るように構成されている。
Therefore, in the present invention, when there are V operations of different events that occur at the same time, which event has occurred is stored in the storage area 60, and V operations of what events have been performed in the past. By holding the data, it is possible to know all the past occurrences of V operations by one V operation.

【0027】通常、事象が異なる場合はセマフォも分け
る必要があるが、この機構の場合、一つのセマフォで複
数の事象のうち、どの事象が発生したのかを知ることが
できる。
Usually, when the events are different, it is necessary to separate the semaphores, but in the case of this mechanism, it is possible to know which event among a plurality of events has occurred with one semaphore.

【0028】ここでは、プロセスAからプロセスBへ複
数の事象通知の必要がある場合についての例を説明す
る。まず、プロセスAは、Vオペレーション機構a10
によって、事象Xが起きたことを通知するためのVオペ
レーションを行なう。また、プロセスAは、事象書き込
み機構a20によって、事象XのVオペレーションを実
行したことを記憶領域60に書き込む。この状態を、図
2(1)に示している。なお、事象XのVオペレーショ
ンを行なったことを領域XのビットをONすることによ
って示している。記憶方法は問わない。
Here, an example of a case where it is necessary to notify a plurality of events from the process A to the process B will be described. First, the process A includes the V operation mechanism a10.
Performs V operation to notify that event X has occurred. Further, the process A writes in the storage area 60 that the V operation of the event X has been executed by the event writing mechanism a20. This state is shown in FIG. The fact that the V operation of the event X has been performed is shown by turning on the bit of the area X. The storage method does not matter.

【0029】次に、プロセスAは、Vオペレーション機
構a10によって、事象Yが起きたことを通知するため
のVオペレーションを行なう。この時、セマフォ50に
対しては、先に操作したVオペレーション内容に上書き
されている。また、プロセスAは、事象書き込み機構a
20によって、事象YのVオペレーションを実行したこ
とを記憶領域60に書き込む。この状態を、図2(2)
に示している。
Next, the process A performs the V operation for notifying that the event Y has occurred by the V operation mechanism a10. At this time, for the semaphore 50, the previously operated V operation contents are overwritten. Further, the process A is the event writing mechanism a.
At 20, the fact that the V operation of event Y has been executed is written in the storage area 60. This state is shown in Fig. 2 (2).
Is shown in.

【0030】次に、プロセスBは、Pオペレーション機
構b10によって、セマフォ50に対してPオペレーシ
ョンを行なう。ここでは、Vオペレーションが既に行わ
れているので待ちが解除される。
Next, the process B performs the P operation on the semaphore 50 by the P operation mechanism b10. Here, since the V operation has already been performed, the wait is released.

【0031】本来、セマフォ50が上書きされてしまっ
たために後のVオペレーション(事象Y)しか有効とな
らず、一度のVオペレーションしか通知されないが、プ
ロセスBは、事象書き込み機構b20によって、その一
度の通知を基に記憶領域60を参照する。これにより、
プロセスBは、これまでに事象XのVオペレーションと
事象YのVオペレーションが行なわれたことがわかる。
この状態を、図2(3)に示している。
Originally, since the semaphore 50 has been overwritten, only the subsequent V operation (event Y) is valid, and only one V operation is notified, but the process B is notified by the event writing mechanism b20. The storage area 60 is referenced based on the notification. This allows
It can be seen that the process B has performed the V operation of the event X and the V operation of the event Y so far.
This state is shown in FIG.

【0032】プロセスBは、事象Xに関する関係処理を
行なう。そして、事象Xに関する関係処理が完了する
と、プロセスBは、次のVオペレーションに備えて、事
象取消機構b30によって、事象Xの記憶領域60の通
知を消去する。
Process B performs a relational process regarding event X. Then, when the related processing regarding the event X is completed, the process B erases the notification of the storage area 60 of the event X by the event canceling mechanism b30 in preparation for the next V operation.

【0033】また、プロセスBは、事象Yに関する関係
処理を行なう。そして、事象Yに関する関係処理が完了
すると、プロセスBは、次のVオペレーションに備え
て、事象取消機構b30によって、事象Yの記憶領域6
0の通知を消去する。この状態を、図2(4)に示して
いる。
Further, the process B performs a related process regarding the event Y. Then, when the related process for the event Y is completed, the process B prepares for the next V operation by the event canceling mechanism b30 and stores the storage area 6 of the event Y.
Clear notifications of 0. This state is shown in FIG.

【0034】なお、前記実施例においては、発生する事
象を事象X、事象Yの2つとして説明しているが、3つ
以上の事象の場合も、記憶領域60に各事象に応じた内
容を記憶させることにより、同様な方法で実現可能であ
る。
In the above embodiment, the events that occur are described as two events, X and Y. However, in the case of three or more events, the contents corresponding to each event are stored in the storage area 60. By storing it, it can be realized in the same manner.

【0035】[0035]

【発明の効果】以上のように本発明によれば、セマフォ
を有効に利用することにより、個数制限によって不可能
だった処理を可能とすることができ、また一度のPオペ
レーション(待ち解除)で複数のVオペレーション(事
象)の発生を知ることができるので、効率的かつ効果的
な制御が可能となるものである。
As described above, according to the present invention, by effectively utilizing semaphores, it is possible to enable processing that was impossible due to the limitation of the number of semaphores, and to perform P operation (wait release) once. Since the occurrence of a plurality of V operations (events) can be known, efficient and effective control can be performed.

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

【図1】本発明の一実施例に係わるセマフォの有効利用
方法を説明するための図。
FIG. 1 is a diagram for explaining an effective use method of a semaphore according to an embodiment of the present invention.

【図2】本実施例の動作を説明するための図。FIG. 2 is a diagram for explaining the operation of this embodiment.

【図3】従来におけるセマフォの利用方法を説明するた
めの図。
FIG. 3 is a diagram for explaining a conventional method of using a semaphore.

【符号の説明】[Explanation of symbols]

a10…Vオペレーション機構、a20…事象書き込み
機構、b10…Pオペレーション機構、b20…事象読
み込み機構、b30…事象取消機構、50…セマフォ、
60…記憶領域。
a10 ... V operation mechanism, a20 ... event writing mechanism, b10 ... P operation mechanism, b20 ... event reading mechanism, b30 ... event canceling mechanism, 50 ... semaphore,
60 ... Storage area.

Claims (3)

【特許請求の範囲】[Claims] 【請求項1】 1つのセマフォ(semaphore )に対して
複数のVオペレーションを行なう場合に、前記セマフォ
に対する各Vオペレーションに応じて、どの事象に対す
るものかをVオペレーション毎に所定の記憶領域に書き
込み、 前記セマフォに対するPオペレーションに応じて、前記
記憶領域を参照して、どの事象に対するVオペレーショ
ンが行われたのかを記憶領域から読み込み、 読み込んだ事象に関する処理を終わって、関係する事象
の前記記憶領域に対する書き込みの内容を消去すること
を特徴とするセマフォの有効利用方法。
1. When a plurality of V operations are performed on one semaphore, which event is written to a predetermined storage area for each V operation according to each V operation for the semaphore, In response to the P operation for the semaphore, the storage area is referred to, the event for which the V operation is performed is read from the storage area, the processing related to the read event is completed, and the related event is stored in the storage area. Efficient use of semaphores characterized by erasing written contents.
【請求項2】 前記セマフォに対する一度のPオペレー
ションに応じて、複数のVオペレーションに応じた前記
記憶領域への書き込みの内容を読み込むことを特徴とす
る請求項1記載のセマフォの有効利用方法。
2. The method for effectively using a semaphore according to claim 1, wherein the contents of writing to the storage area corresponding to a plurality of V operations are read in response to one P operation for the semaphore.
【請求項3】 前記複数のVオペレーションには、複数
の同じ事象に対するVオペレーション、または異なる事
象が複数ある場合にそれぞれの事象に対するVオペレー
ションを含むことを特徴とする請求項1記載のセマフォ
の有効利用方法。
3. The effective semaphore according to claim 1, wherein the plurality of V operations include V operations for a plurality of same events or V operations for a plurality of different events when there are a plurality of different events. How to Use.
JP5325294A 1993-12-22 1993-12-22 Effective using method for semaphore Pending JPH07182186A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP5325294A JPH07182186A (en) 1993-12-22 1993-12-22 Effective using method for semaphore

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP5325294A JPH07182186A (en) 1993-12-22 1993-12-22 Effective using method for semaphore

Publications (1)

Publication Number Publication Date
JPH07182186A true JPH07182186A (en) 1995-07-21

Family

ID=18175214

Family Applications (1)

Application Number Title Priority Date Filing Date
JP5325294A Pending JPH07182186A (en) 1993-12-22 1993-12-22 Effective using method for semaphore

Country Status (1)

Country Link
JP (1) JPH07182186A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2015144000A (en) * 2005-10-20 2015-08-06 クゥアルコム・インコーポレイテッドQualcomm Incorporated Method and apparatus to clear semaphore reservation

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2015144000A (en) * 2005-10-20 2015-08-06 クゥアルコム・インコーポレイテッドQualcomm Incorporated Method and apparatus to clear semaphore reservation

Similar Documents

Publication Publication Date Title
US6212543B1 (en) Asymmetric write-only message queuing architecture
JP3135714B2 (en) Checkpoint restart method
US7200686B2 (en) Method, apparatus, and program product for facilitating serialization of input/output requests to a logical volume allowing nonserialized input/output requests
JPH07182186A (en) Effective using method for semaphore
US20020004811A1 (en) Systems, Methods and computer program products for controlling and visualizing processes
JP2671160B2 (en) Exception handling method
US7934067B2 (en) Data update history storage apparatus and data update history storage method
JPH0713805A (en) Parallel computer and program execution reproducing method
JPH064364A (en) Cpu operation recording system
CN117608801A (en) EEPROM universal read-write interface architecture and execution method
CN117850352A (en) Multitasking method and device
JP4009401B2 (en) Disk control apparatus and recording medium recording program
JP3129889B2 (en) Numerical control unit
JPH07210421A (en) Debugging method in thread environment
JPH04181331A (en) Instruction retry system
JPH11184712A (en) Information processor
JP4527419B2 (en) Program trace method and trace processing system
JPH0635747A (en) Debug supporting device
JP2933569B2 (en) Central processing unit
JPS58125154A (en) State hysteresis storing system
JPH05241861A (en) Free memory management system for operating system
JPH02287985A (en) Retract processing system for hard disk device
JPH05274242A (en) Asynchronous input/output demon processing system
JPH0528421B2 (en)
JPH06282463A (en) Memory control method for program test

Legal Events

Date Code Title Description
LAPS Cancellation because of no payment of annual fees