JP2569918B2 - Deadlock generator - Google Patents

Deadlock generator

Info

Publication number
JP2569918B2
JP2569918B2 JP2209937A JP20993790A JP2569918B2 JP 2569918 B2 JP2569918 B2 JP 2569918B2 JP 2209937 A JP2209937 A JP 2209937A JP 20993790 A JP20993790 A JP 20993790A JP 2569918 B2 JP2569918 B2 JP 2569918B2
Authority
JP
Japan
Prior art keywords
deadlock
task
program
tasks
lock
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.)
Expired - Lifetime
Application number
JP2209937A
Other languages
Japanese (ja)
Other versions
JPH0496142A (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.)
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 JP2209937A priority Critical patent/JP2569918B2/en
Publication of JPH0496142A publication Critical patent/JPH0496142A/en
Application granted granted Critical
Publication of JP2569918B2 publication Critical patent/JP2569918B2/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Description

【発明の詳細な説明】 〔産業上の利用分野〕 本発明は電子計算機システムにおいて、オンラインプ
ログラムを開発する際に、オンラインプログラムのデッ
ドロック発生時の動作確認テストを行う場合に有効なデ
ッドロック発生装置に関するものである。
DETAILED DESCRIPTION OF THE INVENTION [Industrial Application Field] The present invention relates to an electronic computer system, in which when an online program is developed, a deadlock that is effective in performing an operation check test when an online program deadlock occurs is performed. It concerns the device.

〔従来の技術〕[Conventional technology]

並行プロセスの環境では、資源の共有の場面におい
て、二つのプロセスが互に相手の資源の解放されるのを
待ち合うデッドロック(deadlock)状態に陥いる場合が
ある。デッドロックの例を第3図を用いて説明する。
今、二つのタスク1と2が一つの資源(データ)に対し
ロックを要求している場合を例に考える。
In a concurrent process environment, in a resource sharing situation, two processes may fall into a deadlock state waiting for each other to release their resources. An example of a deadlock will be described with reference to FIG.
Now, consider a case where two tasks 1 and 2 are requesting a lock on one resource (data) as an example.

ここでロックには検索ロックと更新ロックの2種類が
あり、以下の規則がある。
Here, there are two types of locks, a search lock and an update lock, and there are the following rules.

(1)他のタスクで検索ロックも更新ロックもかけてい
ない時、自タスクは検索ロックも更新ロックもかけるこ
とが出来る。
(1) When the search lock and the update lock are not held by another task, the invoking task can hold the search lock and the update lock.

(2)他のタスクで検索ロックをかけている時、自タス
クは検索ロックをかけることができるが、更新ロックは
他のタスクが検索ロックをはずすまで待たされる。
(2) When the search lock is locked by another task, the own task can lock the search, but the update lock waits until the other task releases the search lock.

(3)他のタスクで更新ロックをかけている時、自タス
クは検索ロック,更新ロック共に他のタスクが更新ロッ
クをはずすまで待たされる。
(3) When an update lock is held by another task, the invoking task waits for both the search lock and the update lock until the other task releases the update lock.

(4)ロックをはずす時は、検索ロック,更新ロック共
に同時に解除しなければならない。
(4) When releasing the lock, both the search lock and the update lock must be released at the same time.

以上の規則がある場合に、図に示すように、→→
→の順でロックをかけようとすると、、で更新
ロック待ちになりデッドロックとなる。
If there are the above rules, →→
If you try to lock in the order of →, the update lock waits and the deadlock occurs.

従来、プログラムでデッドロックを発生させる場合
は、プログラムが上記のロックをかけたあとタイマウ
ェイトあるいは、オペレータの入力待ちの状態にしてお
き、他のプログラムでファイルまたはデータベースに排
他制御(上記,の処理)を行った後にタイマウェイ
トあるいはオペレータの入力待ちを解除してのロック
をかけさせ、デッドロックを発生させる方法が一般的で
あった。
Conventionally, when a deadlock is generated in a program, the program locks the lock, waits for a timer or waits for an input from an operator, and performs exclusive control on a file or a database with another program (the processing described above). ) Is performed, the timer wait or the input wait of the operator is released, the lock is released, and the deadlock is generated.

〔発明が解決しようとする課題〕[Problems to be solved by the invention]

上述した従来の方法では、理論上、確実にデッドロッ
クを発生させる保証はなかった。その理由とし、1つは
プログラムの動作状況によりタイマウェイトがいつ発生
するかが不確実になり、従来は人間がころあいを見て上
述の他のプログラムを起動していた。2つめは、タイマ
ウェイトの発生が不確実なために上述の,のロック
が終る前にのロックがかかると、デッドロックは発生
しなくなる。
In the conventional method described above, there was no guarantee that a deadlock would definitely occur in theory. One of the reasons is that it is uncertain when the timer wait will occur depending on the operation state of the program, and in the past, humans started the above-mentioned other programs after watching the time. Second, deadlock does not occur if the lock is applied before the above lock is completed because the occurrence of the timer wait is uncertain.

従ってデッドロックが実際に発生したかどうかを必ず
検証する必要があった。
Therefore, it was necessary to verify whether a deadlock actually occurred.

また、従来の方法では、タイマウェイトあるいはオペ
レータの入力まちで多大な時間を要し、さらに人間の介
入が必要なことで操作ミスの危険もあった。
Further, in the conventional method, a large amount of time is required between a timer wait and an input by an operator, and further, there is a risk of an operation error because human intervention is required.

〔課題を解決するための手段〕[Means for solving the problem]

本発明は、電子計算機システムにおけるデッドロック
発生装置であって前記電子計算機のプログラムが前記デ
ッドロック発生装置を介してデッドロックを発生させる
ことが出来る前記デッドロック発生装置において、上位
タスクと2つの下位タスクを具備し、前記上位タスクは
前記電子計算機のオペレーティングシステムにより起動
されると前記下位タスクに起動指示を出す下位タスク起
動指示手段と、前記電子計算機システムのプログラムか
らの通知を受け取り、前記通知が停止を要求する場合に
は前記2つの下位タスクに終了指示を出し前記2つの下
位タスクからの終了報告を受けて停止し、稼働を要求す
る場合には前記2つの下位タスクに稼働指示を出す下位
タスク制御手段を有し、前記2つの下位タスクは前記下
位タスク起動指示手段による前記起動指示を受けて、前
記電子計算機のオペレーティングシステムにより前記上
位タスクを介して与えられるデータベースを互にオープ
ンさせるデータベースオープン手段と、前記稼働指示を
受けて前記データベースに対して互に排他制御を行い、
いずれか一方の前記下位タスクがデッドロックが起きる
状態を発生させ、他の一方の前記下位タスクが前記デッ
ドロックが起きる状態が発生したことを検出して前記検
出情報を前記プログラムに通知するデッドロック準備手
段と、前記終了指示を受けて前記オープンさせた前記デ
ータベースを互にクローズさせ互に前記終了報告を出す
終了処理手段を有することを特徴とする。
The present invention provides a deadlock generating apparatus in an electronic computer system, wherein the program of the electronic computer can generate a deadlock via the deadlock generating apparatus. A lower task start instructing means for issuing a start instruction to the lower task when the upper task is started by an operating system of the computer, and a notification from a program of the computer system. When a stop is requested, an end instruction is issued to the two lower tasks, and the operation is stopped upon receiving an end report from the two lower tasks. When an operation is requested, an operation instruction is issued to the two lower tasks. A task control unit, wherein the two lower tasks are the lower task activation instructing means; Database opening means for mutually opening the database provided via the upper task by the operating system of the computer in response to the activation instruction by the computer, and mutually exclusive control of the database in response to the operation instruction. Do
A deadlock in which one of the lower tasks generates a state in which a deadlock occurs, and the other one of the lower tasks detects that the state in which the deadlock occurs occurs, and notifies the program of the detection information. It is characterized by having a preparation means and a termination processing means for mutually closing the databases opened in response to the termination instruction and mutually issuing the termination report.

〔実施例〕〔Example〕

次に、本発明について図面を参照して説明する。 Next, the present invention will be described with reference to the drawings.

第1図は本発明のデッドロック装置の一実施例を示す
ブロック構成図である。第1図において、1は本発明に
おけるデッドロック発生装置、2は上位タスク、3a,3b
は下位タスクである。2つの下位タスクは実際は全く同
じ処理を同時に動作するものとする。
FIG. 1 is a block diagram showing one embodiment of the deadlock device of the present invention. In FIG. 1, 1 is a deadlock generator according to the present invention, 2 is an upper task, 3a, 3b
Is a lower task. It is assumed that the two lower tasks actually perform the same processing at the same time.

本装置1の上位タスク2がOS(オペレーティングシス
テム)により起動されると、まず上位タスク2が作動を
開始し、下位タスク起動指示手段2−1を介して下位タ
スク3a,3bを起動する。下位タスクはそれぞれ動作を開
始すると、まずOSによって指定されたファイルをデータ
ベースオープン手段3−1によりオープンする。ここで
両方の下位タスクで用いるファイルは同一である。
When the upper task 2 of the apparatus 1 is started by an OS (operating system), the upper task 2 starts to operate, and starts the lower tasks 3a and 3b via the lower task start instructing means 2-1. When each of the lower tasks starts operation, first, the file specified by the OS is opened by the database open means 3-1. Here, the files used in both lower tasks are the same.

下位タスクはファイルのオープンが完了すると、上位
タスクからの指示待ち状態になる。指示待ち状態とは、
タスク間の同期待ち、いわゆるセマフォウェイトの状態
である。
When the lower-level task has completed opening the file, the lower-level task waits for an instruction from the higher-level task. The instruction waiting state is
This is a state of waiting for synchronization between tasks, which is a so-called semaphore wait state.

4は本装置の外部のプログラムからの本装置の稼働要
求通知、あるいは、停止要求通知である。
Reference numeral 4 denotes an operation request notification or a stop request notification of the apparatus from a program external to the apparatus.

上位タスクは下位タスク制御手段2−2において稼働
・停止要求通知4を受け取ると、それが本装置の稼働要
求であるか、停止要求であるかを判定する。停止要求で
あれば、下位タスクに終了指示6a,6bを出し、両方の下
位タスク3a,3bの終了報告を待ち合わせて上位タスク2
の動作を終了する。稼働要求であれば、稼働指示5a,5b
を下位タスク3a,3bに渡す。
When the upper task receives the operation / stop request notification 4 in the lower task control means 2-2, it determines whether the request is an operation request of the apparatus or a stop request. If the request is a stop request, end instructions 6a and 6b are issued to the lower task, and the end tasks of both lower tasks 3a and 3b are waited for before the upper task 2
The operation of is ended. If it is an operation request, operation instructions 5a, 5b
To the lower tasks 3a and 3b.

下位タスク3a,3bはデッドロック準備手段3−2にお
いて上位タスク2からの指示を受け取ると、終了指示か
稼働指示かを判定し、終了指示6a,6bであれば、終了処
理手段3−3を介してそれぞれファイルをクローズして
終了報告を出し動作を終了する。稼働指示5a,5bであれ
ば、まず、下位タスク3a,3bは、それぞれファイルのデ
ータに検索ロックをかける。検索ロックとは、あるデー
タに対して他のタスクからの検索処理は許すが、更新処
理は許さない排他制御のことをいう。ここで両方の下位
タスクが検索ロックをかけるデータは同一のデータであ
る。
Upon receiving the instruction from the upper task 2 in the deadlock preparing means 3-2, the lower tasks 3a and 3b determine whether the instruction is an end instruction or an operation instruction. Then, the files are closed, a completion report is issued, and the operation is terminated. In the case of the operation instructions 5a and 5b, first, the lower tasks 3a and 3b respectively lock the data of the file with the search. The search lock refers to an exclusive control in which search processing of certain data from another task is permitted, but update processing is not permitted. Here, the data for which both lower tasks lock the search are the same data.

次に、下位タスク3a,3bは、互に他方のタスクとの同
期をとる。この同期は両方のタスクが前述の検索ロック
動作を完了するまで、どちらのタスクもそれ以降の処理
に進まないようにするためのものである。
Next, the lower tasks 3a and 3b synchronize with each other. This synchronization is to prevent both tasks from proceeding to further processing until both tasks have completed the above-described search lock operation.

次に、それぞれの下位タスクは、以前に検索ロックを
かけたデータにさらに更新ロックをかける。更新ロック
とは、他のタスクからの検索処理も更新処理も許さない
排他制御のことである。本実施例の場合、前述の互いに
同期をとる処理の後は2つの下位タスク3a,3bは非同期
に動作するので、どちらが先に更新ロック処理を行うか
はわからないが、ここでは仮に下位タスク3aが更新ロッ
ク処理を行ったとする。当該データには下位タスク3bに
よってすでに検索ロックがかけられているので、下位タ
スク3aは更新ロック処理で待ちの状態に入る。続いて、
下位タスク3bが更新ロック処理を行おうとするが、当該
データにはやはり下位タスク3aによって検索ロックがか
けられている。ここで下位タスク3bが待ちの状態に入っ
てしまうと、下位タスク3aと下位タスク3bほ互に永久に
待ちの状態、いわゆるデッドロック状態になる。この
為、OSでは、下位タスク3bは待ちの状態とはせずに、更
新ロック失敗を通知するようになっている。
Next, each lower-level task further places an update lock on data previously locked with a search. The update lock is an exclusive control that does not allow search processing and update processing from other tasks. In the case of the present embodiment, since the two lower tasks 3a and 3b operate asynchronously after the above-described synchronous processing, it is not known which performs the update lock processing first. Assume that update lock processing has been performed. Since the search lock has already been applied to the data by the lower task 3b, the lower task 3a enters a wait state in the update lock processing. continue,
The lower task 3b attempts to perform the update lock processing, but the data is also locked by the lower task 3a. Here, when the lower task 3b enters the waiting state, the lower task 3a and the lower task 3b enter a waiting state forever, that is, a so-called deadlock state. Therefore, in the OS, the lower task 3b notifies the update lock failure without waiting.

更新ロック失敗をOSより通知された下位タスク3bは、
本装置を稼働させたプログラムに対して更新ロック失敗
通知7bを行う。
The lower task 3b notified of the update lock failure from the OS
An update lock failure notification 7b is sent to the program that has operated this device.

ここで本装置を稼働させたプログラムがやはり同一フ
ァイルの同一データに対して検索ロックをかけていたと
する。プログラムが下位タスク3bから更新ロック失敗通
知7bを受け取った後、当該データに更新ロックをかけよ
うとすると、やはり下位タスク3bと同様、OSから更新ロ
ック失敗を通知されることになる。このようにして、本
装置を稼働させたプログラムに更新ロック失敗すなわち
デッドロックが発生する。
Here, it is assumed that the program that has operated the apparatus has also locked the search for the same data in the same file. After the program receives the update lock failure notification 7b from the lower task 3b and attempts to lock the data, the OS is notified of the update lock failure as in the lower task 3b. Thus, the update lock failure, that is, a deadlock occurs in the program that has operated the present apparatus.

この後、本装置を稼働させたプログラムは検索ロック
を解放し、また下位タスク3bも検索ロックを解放するの
で、下位タスク3aは更新ロック処理を正常に完了し、検
索・更新両ロックを解放する。
Thereafter, since the program that has operated the apparatus releases the search lock and the lower task 3b also releases the search lock, the lower task 3a normally completes the update lock processing and releases both the search and update locks. .

このようにして、両方の下位タスクは再び上位タスク
からの指示待ちの状態になる。
In this way, both lower tasks again wait for an instruction from the upper task.

ここでは、下位タスク3aが先に更新ロック処理を行っ
た場合について説明したが、反対に、下位タスク3bが先
に更新ロック処理行った場合も全く同様で、下位タスク
3aが更新ロック失敗通知7aを行うことになる。
Here, the case where the lower task 3a has performed the update lock processing first has been described. On the contrary, the same applies to the case where the lower task 3b has performed the update lock processing first.
3a performs update lock failure notification 7a.

第2図は本発明によるデッドロック発生装置1をオン
ラインサブシステム8上で開発中のオンライントランザ
クション処理プログラム9のデッドロック時の動作確認
テストに応用した例である。
FIG. 2 shows an example in which the deadlock generator 1 according to the present invention is applied to an operation check test of an online transaction processing program 9 under development on an online subsystem 8 at the time of deadlock.

図に示すように、オンライントランザクション処理プ
ログラム9で検索ロック処理を行って、デッドロック発
生要求を示す稼働・停止要求通知4を発行し、更新ロッ
ク失敗通知(7a/7b)を受け取った後に更新ロック処理
を行うと、オンラインサブシステム8が更新ロック失敗
を検出し、検索ロックの解放処理を行う。
As shown in the figure, the online transaction processing program 9 performs a search lock process, issues an operation / stop request notification 4 indicating a deadlock occurrence request, and receives an update lock failure notification (7a / 7b) before updating lock. When the processing is performed, the online subsystem 8 detects the update lock failure and performs the processing of releasing the search lock.

以上に述べたように、本発明におけるデッドロック発
生装置を用いることによって、開発中のオンライントラ
ンザクション処理プログラムに容易にデッドロックを発
生させることが可能となる。
As described above, by using the deadlock generation device according to the present invention, it is possible to easily generate a deadlock in the online transaction processing program under development.

〔発明の効果〕〔The invention's effect〕

以上説明したように本発明のデッドロック発生装置を
用いることによって、確実にしかもオペレータの介在を
全く必要とせずにデッドロックを発生させることが可能
となり、オンラインプログラム開発時のデッドロック動
作確認テストを極めて効率的に行うことが出来る。
As described above, by using the deadlock generation device of the present invention, it is possible to generate a deadlock reliably and without any need for operator intervention, and a deadlock operation confirmation test during online program development can be performed. It can be done very efficiently.

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

第1図は本発明のデッドロック装置の一実施例を示すブ
ロック構成図、第2図は本発明によるデッドロック発生
装置の応用例を示す図、第3図はデッドロック発生の原
理を示す図である。 1……デッドロック発生装置、2……上位タスク、2−
1……下位タスク起動指示手段、2−2……下位タスク
制御手段、3−1……データベースオープン手段、3−
2……デッドロック準備手段、3−3……終了処理手
段、3a,3b……下位タスク、4……稼働・停止要求通
知、5a,5b……稼働指示、6a,6b……終了指示、7a,7b…
…更新ロック失敗通知、8……オンラインサブシステ
ム、9……オンライントランザクション処理プログラ
ム。
FIG. 1 is a block diagram showing an embodiment of a deadlock device according to the present invention, FIG. 2 is a diagram showing an application example of a deadlock generating device according to the present invention, and FIG. 3 is a diagram showing the principle of deadlock generation. It is. 1 ... deadlock generator, 2 ... upper task, 2-
1 ... lower task start instructing means, 2-2 ... lower task control means, 3-1 ... database open means, 3-
2 deadlock preparation means, 3-3 termination processing means, 3a, 3b lower task, 4 operation / stop request notification, 5a, 5b operation instruction, 6a, 6b end instruction, 7a, 7b…
... Update lock failure notification, 8 ... Online subsystem, 9 ... Online transaction processing program.

Claims (1)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】電子計算機システムにおけるデッドロック
発生装置であって前記電子計算機のプログラムが前記デ
ッドロック発生装置を介してデッドロックを発生させる
ことが出来る前記デッドロック発生装置において、上位
タスクと2つの下位タスクを具備し、前記上位タスクは
前記電子計算機のオペレーティングシステムにより起動
されると前記下位タスクに起動指示を出す下位タスク起
動指示手段と、前記電子計算機システムのプログラムか
らの通知を受け取り、前記通知が停止を要求する場合に
は前記2つの下位タスクに終了指示を出し前記2つの下
位タスクからの終了報告を受けて停止し、稼働を要求す
る場合には前記2つの下位タスクに稼働指示を出す下位
タスク制御手段を有し、前記2つの下位タスクは前記下
位タスク起動指示手段による前記起動指示を受けて、前
記電子計算機のオペレーティングシステムにより前記上
位タスクを介して与えられるデータベースを互にオープ
ンさせるデータベースオープン手段と、前記稼働指示を
受けて前記データベースに対して互に排他制御を行い、
いずれか一方の前記下位タスクがデッドロックが起きる
状態を発生させ、他の一方の前記下位タスクが前記デッ
ドロックが起きる状態が発生したことを検出して前記検
出情報を前記プログラムに通知するデッドロック準備手
段と、前記終了指示を受けて前記オープンさせた前記デ
ータベースを互にクローズさせ互に前記終了報告を出す
終了処理手段を有することを特徴とするデッドロック発
生装置。
1. A deadlock generating device in an electronic computer system, wherein a program of the electronic computer is capable of generating a deadlock via the deadlock generating device. A lower task, wherein the higher task receives a notification from a program of the computer system, and receives a notification from a program of the computer system, wherein the lower task receives a notification from a program of the computer system when the upper task is started by an operating system of the computer. Issues a termination instruction to the two lower tasks when requesting a stop, and stops upon receiving a termination report from the two lower tasks, and issues an operation instruction to the two lower tasks when requesting operation A lower task control unit, wherein the two lower tasks are the lower task activation instruction; Database opening means for mutually opening a database provided by the operating system of the computer via the upper task in response to the start instruction by a stage, and mutually exclusive control of the database in response to the operation instruction Do
A deadlock in which one of the lower tasks generates a state in which a deadlock occurs, and the other one of the lower tasks detects that the state in which the deadlock occurs occurs, and notifies the program of the detection information. A deadlock generating apparatus, comprising: a preparation unit; and a termination processing unit that closes the database that has been opened in response to the termination instruction and mutually issues the termination report.
JP2209937A 1990-08-08 1990-08-08 Deadlock generator Expired - Lifetime JP2569918B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2209937A JP2569918B2 (en) 1990-08-08 1990-08-08 Deadlock generator

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2209937A JP2569918B2 (en) 1990-08-08 1990-08-08 Deadlock generator

Publications (2)

Publication Number Publication Date
JPH0496142A JPH0496142A (en) 1992-03-27
JP2569918B2 true JP2569918B2 (en) 1997-01-08

Family

ID=16581132

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2209937A Expired - Lifetime JP2569918B2 (en) 1990-08-08 1990-08-08 Deadlock generator

Country Status (1)

Country Link
JP (1) JP2569918B2 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106874391B (en) * 2017-01-12 2019-12-10 无线生活(杭州)信息科技有限公司 deadlock processing method and device

Also Published As

Publication number Publication date
JPH0496142A (en) 1992-03-27

Similar Documents

Publication Publication Date Title
EP0618532B1 (en) Deadlock detecting device
US5095421A (en) Transaction processing facility within an operating system environment
US5561797A (en) Method for synchronizing transaction processing in a distributed heterogeneous system
EP0735473B1 (en) Method and apparatus for managing a database in a distributed object operating environment
Gligor et al. Transaction management in distributed heterogeneous database management systems
Mueller et al. A nested transaction mechanism for LOCUS
JPS61233849A (en) Method for controlling exclusively data base
US8676635B2 (en) Method and system for managing transactions
US20030115276A1 (en) Message ordering in a messaging system
JPH087691B2 (en) Computer system and application program execution method
JP3222125B2 (en) Database sharing method between systems
JP2850863B2 (en) Exclusive control unit
JP2569918B2 (en) Deadlock generator
Zhao Byzantine fault tolerance for nondeterministic applications
KR100318974B1 (en) An apparatus, method and computer program product for client/server computer with timing of creation of coordinator transaction state object being based on triggering events
Barghouti et al. Multi-Agent Rule-Based Software Development Environments
Ortega-Arjona Applying Idioms for Synchronization Mechanisms: Synchronizing communication components for the Fast Fourier Transform
Barnes et al. VM/ESA support for coordinated recovery of files
JP3422504B2 (en) Exclusive control method between tasks
JP2000293426A (en) Record lock system
EP0817039A2 (en) Maintaining a sequential store order (SSO) in a non-SSO machine
JP2560514B2 (en) Deadlock suppression method
Hanazumi et al. A Formal Approach to implement java exceptions in cooperative systems
JP2503287B2 (en) Multi-function computer with survival confirmation function
Scheuermann et al. A recovery scheme for multidatabase systems

Legal Events

Date Code Title Description
FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20071024

Year of fee payment: 11

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20081024

Year of fee payment: 12

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20091024

Year of fee payment: 13

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20091024

Year of fee payment: 13

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20101024

Year of fee payment: 14

EXPY Cancellation because of completion of term