JPH08249226A - Management system for memory resources - Google Patents

Management system for memory resources

Info

Publication number
JPH08249226A
JPH08249226A JP4816795A JP4816795A JPH08249226A JP H08249226 A JPH08249226 A JP H08249226A JP 4816795 A JP4816795 A JP 4816795A JP 4816795 A JP4816795 A JP 4816795A JP H08249226 A JPH08249226 A JP H08249226A
Authority
JP
Japan
Prior art keywords
memory
memory resource
resource management
memory resources
operating system
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
JP4816795A
Other languages
Japanese (ja)
Inventor
Toshiaki Akiyoshi
利彰 秋吉
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.)
Hitachi Software Engineering Co Ltd
Hitachi Ltd
Original Assignee
Hitachi Software Engineering Co Ltd
Hitachi Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hitachi Software Engineering Co Ltd, Hitachi Ltd filed Critical Hitachi Software Engineering Co Ltd
Priority to JP4816795A priority Critical patent/JPH08249226A/en
Publication of JPH08249226A publication Critical patent/JPH08249226A/en
Pending legal-status Critical Current

Links

Abstract

PURPOSE: To provide a management system for memory resources capable of reducing the loads on an operating system and effectively utilizing the memory resources. CONSTITUTION: In a computer system 11 in which an application program requests allocation to the operating system 16 and uses the memory resources 17, a memory resource management part 12 present between the operating system 16 and the application program for managing the memory resources 17 used by the application program is provided. The memory resource management part 12 relates the memory resources to be allocated to a request origin process ID, receives possible requests in a summarized form, and at the time of the end of a request origin process, releases the memory resources belonging to the process altogether.

Description

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

【0001】[0001]

【産業上の利用分野】本発明はメモリ資源の管理システ
ムに関し、特に、メモリ資源を小単位で多数使用する計
算機システムにおいて、当該計算機システム全体で使用
できるメモリ資源の総数に制限がある場合に好適なメモ
リ資源の管理システムに関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a memory resource management system, and is particularly suitable for a computer system that uses a large number of memory resources in small units when the total number of memory resources that can be used by the entire computer system is limited. Memory resource management system.

【0002】[0002]

【従来の技術】何等かの情報をメモリ中に保持する場
合、情報の追加/削除等を考慮して、図2に示す如く、
1単位の情報を持ったメモリ小片をアドレスポインタで
論理的に連結するのが、従来からの一般的な方法であ
る。この場合、メモリ資源の割り当ては必ず1個ずつ行
わなければならないため、上述の小メモリ群を初期状態
で持つ場合にも、アプリケーションプログラムからオペ
レーティングシステムへ、1片単位でメモリ割り当て要
求を繰り返すことを行っていた。また、不要となったメ
モリ資源の解放要求も、取得単位毎に行わなければなら
ず、処理単位などでの一括解放機能は考慮されていなか
った。
2. Description of the Related Art When storing some information in a memory, as shown in FIG.
It is a conventional general method to logically connect memory pieces having one unit of information with an address pointer. In this case, since memory resources must be allocated one by one, even if the above-mentioned small memory group is held in the initial state, it is possible to repeat the memory allocation request from the application program to the operating system in units of one piece. I was going. In addition, a request for releasing unnecessary memory resources must be issued for each acquisition unit, and the batch release function in processing units has not been considered.

【0003】[0003]

【発明が解決しようとする課題】上述の、小メモリ群を
初期状態で持つ場合、従来は、以下の2つの方法のいず
れかの処理を行っている。 (1)アプリケーションプログラムからオペレーティング
システムへ、1片単位でメモリ割り当て要求を出す。 (2)アプリケーションプログラムから、オペレーティン
グシステムへ (1片あたりのサイズ)×(個数) を1個の連続領域とするメモリ割り当て要求を出す。 しかし、上記(1)の方法の場合には、オペレーティング
システムに膨大なオーバヘッドが発生するという問題が
あり、また、例えば、Windows V3.1オペレーティング
システムでは、オペレーションシステム全体で8192個ま
でしかメモリ片を持つことができないという制約もあ
る。また、(2)の方法の場合にも、システムとして効率
の良いサイズは意識しておらず、無駄に巨大な連続領域
を確保することにより、メモリ資源を浪費することにも
なりかねない。更に、従来は、解放要求もメモリを取得
したときの単位で行われ、複数メモリ片の一括解放の仕
組みはなかった。本発明は上記事情に鑑みてなされたも
ので、その目的とするところは、従来の技術における上
述の如き問題を解消し、オペレーティングシステムの負
荷を軽減し、メモリ資源を有効に活用可能とするメモリ
資源の管理システムを提供することにある。
In the case of having the above-mentioned small memory group in the initial state, conventionally, either one of the following two methods is performed. (1) The application program issues a memory allocation request to the operating system in units of one piece. (2) The application program issues a memory allocation request to the operating system, which is (size per piece) x (number) as one continuous area. However, in the case of the above method (1), there is a problem that a huge overhead occurs in the operating system, and, for example, in the Windows V3.1 operating system, only 8192 pieces of memory are used in the entire operating system. There is also a restriction that you cannot have it. Also, in the case of the method (2), the efficient size of the system is not taken into consideration, and memory resources may be wasted by securing a huge continuous area unnecessarily. Furthermore, in the past, the release request was also made in units when the memory was acquired, and there was no mechanism for batch release of multiple memory pieces. The present invention has been made in view of the above circumstances, and an object of the present invention is to solve the above-mentioned problems in the conventional technology, reduce the load on the operating system, and effectively use the memory resources. To provide a resource management system.

【0004】[0004]

【課題を解決するための手段】本発明の上記目的は、ア
プリケーションプログラムがオペレーティングシステム
に割り当て要求を行ってメモリ資源を使用する計算機シ
ステムにおいて、前記オペレーティングシステムとアプ
リケーションプログラムとの間にあって、アプリケーシ
ョンプログラムが使用するメモリ資源を管理するメモリ
資源管理部を設け、該メモリ資源管理部は、割り当てる
メモリ資源と要求元プロセスIDとを関連付けて、可能
な要求を集約した形で受け付け、また、前記要求元プロ
セスの終了時には、当該プロセスに属するメモリ資源の
一括解放を行うことを特徴とするメモリ資源の管理シス
テムによって達成される。
SUMMARY OF THE INVENTION It is an object of the present invention to provide a computer system in which an application program makes an allocation request to an operating system to use memory resources, and the application program is located between the operating system and the application program. A memory resource management unit that manages the memory resource to be used is provided, and the memory resource management unit associates the allocated memory resource with the request source process ID and accepts possible requests in an aggregated form. At the end of, the memory resource management system is characterized by collectively releasing the memory resources belonging to the process.

【0005】[0005]

【作用】本発明に係るメモリ資源の管理方法において
は、オペレーティングシステムとアプリケーションプロ
グラムとの間にメモリ資源管理部を設けて、該メモリ資
源管理部は、割り当てるメモリ資源と要求元プロセスI
Dとを関連付けて可能な要求を受け付け、要求元プロセ
スの終了時には、当該プロセスに属するメモリ資源の解
放を行うようにしたので、同サイズの複数メモリ片の割
り当てを、オペレーティングシステムへの1回の割り当
て要求に置き換えることができる、オペレーティングシ
ステムの負荷を軽減するばかりでなく、総数制限をも回
避できる。また、本発明に係るメモリ資源の管理方法に
おいては、メモリ資源管理モジュールとオペレーティン
グシステムとの間で授受されるメモリは、オペレーティ
ングシステムの運用上最適なメモリサイズ(例えば、W
indows 3.1オペレーティングシステムでは、大きなメ
モリ片も64キロバイト単位で1個とカウントされるの
で、オペレーティングシステムへのメモリ資源の割り当
て要求は、64キロバイト単位に行うのが最も効率的な
サイズとなる)に置き換え、アプリケーションプログラ
ムからの要求に対する余剰分は、次の要求に利用するの
で、メモリ資源の有効活用ができる。
In the memory resource management method according to the present invention, a memory resource management unit is provided between the operating system and the application program, and the memory resource management unit allocates the memory resource and the request source process I.
A request that can be associated with D is accepted, and at the end of the request source process, the memory resources that belong to that process are released, so that multiple memory pieces of the same size are allocated to the operating system once. Not only does it reduce the load on the operating system that can be replaced by quota requests, but it also avoids the total limit. Further, in the memory resource management method according to the present invention, the memory exchanged between the memory resource management module and the operating system is the optimum memory size (for example, W
In the indows 3.1 operating system, a large memory piece is counted as one in 64 kilobyte units, so it is most efficient to make a memory resource allocation request to the operating system in 64 kilobyte units.) And the surplus for the request from the application program is used for the next request, so that the memory resources can be effectively used.

【0006】[0006]

【実施例】以下、本発明の実施例を図面に基づいて詳細
に説明する。図1は、本発明の一実施例に係るメモリ資
源の管理方法を採用した処理システムのブロック構成図
である。図中、11はCPU,メモリを持つ処理システ
ムであり、内部にメモリ資源管理部12を持つ。該メモ
リ資源管理部12は、システムが保有するメモリ資源1
7と、それを使用したいプロセス15の仲立ちとして、
メモリ資源の管理を司るものであり、利用中のメモリ資
源を記憶しておくための利用中資源記憶部13、およ
び、メモリ資源管理部12自身が所有権を持ち、また、
プロセス15に分配可能なメモリ資源を記憶する利用可
能メモリ資源記憶部14を持つ。
Embodiments of the present invention will now be described in detail with reference to the drawings. FIG. 1 is a block diagram of a processing system that employs a memory resource management method according to an embodiment of the present invention. In the figure, 11 is a processing system having a CPU and a memory, and has a memory resource management unit 12 inside. The memory resource management unit 12 uses the memory resources 1 owned by the system.
7 and the process 15 that wants to use it,
The memory resource management unit 13 manages memory resources, and the memory resource management unit 12 itself for storing the memory resources in use, and the memory resource management unit 12 own the ownership, and
The process 15 has an available memory resource storage unit 14 that stores distributable memory resources.

【0007】図3は、利用中資源記憶部13の論理構造
を示したものである。メモリ資源管理部12を経由して
使用されるすべてのメモリ資源の情報は、先頭情報ポイ
ンタ31からのアドレスチェインによって管理されてい
る。上述の先頭情報ポインタ31には、メモリ資源管理
IDに1対1に対応した、プライマリ情報リスト32が
図2のリスト形式で連なる。プライマリ情報リスト32
は、次情報ポインタ321、メモリ資源管理ID32
3、およびメモリのアドレス情報を管理するセカンダリ
リスト33のポインタ322を持つ。セカンダリリスト
33は、個々の使用中メモリ資源塊の先頭アドレスとサ
イズを情報を内部に持つ。
FIG. 3 shows the logical structure of the resource-in-use storage unit 13. Information on all memory resources used via the memory resource management unit 12 is managed by the address chain from the head information pointer 31. A primary information list 32, which corresponds to the memory resource management ID one-to-one, is linked to the above-mentioned head information pointer 31 in the list format of FIG. Primary information list 32
Is the next information pointer 321, memory resource management ID 32
3 and a pointer 322 of the secondary list 33 for managing address information of the memory. The secondary list 33 internally has information on the start address and size of each in-use memory resource block.

【0008】図4は、図1中の利用可能メモリ資源記憶
部14の内部構造を示したものである。利用可能メモリ
資源記憶部14内においては、プロセスからの要求に対
して分配可能なメモリ資源塊は、アドレス順に連結され
たリスト構造と、サイズ順に連結されたリスト構造と
が、論理的に結合した形で管理される。以下、図1〜図
4に示す構成図、ならびに、図5,図6に示す動作フロ
ー図に基づき、処理の流れを説明する。プロセス15
は、メモリ資源17の利用に先立ち、メモリ資源管理部
12に対して、プロセス単位,プロセス内の処理区分単
位、または、データグループ単位に、メモリ資源管理I
Dを取得しておく。
FIG. 4 shows the internal structure of the available memory resource storage unit 14 in FIG. In the available memory resource storage unit 14, a memory resource block that can be distributed in response to a request from a process is logically combined with a list structure connected in the order of address and a list structure connected in the order of size. Managed by shape. The flow of processing will be described below based on the configuration diagrams shown in FIGS. 1 to 4 and the operation flow diagrams shown in FIGS. Process 15
Prior to using the memory resource 17, the memory resource management unit 12 performs memory resource management I on a process-by-process basis, a process division unit within the process, or a data group unit.
Get D.

【0009】上述のメモリ資源管理IDは、上位に要求
元プロセスID、下位にそのプロセスIDに対して一意
となる整数を、メモリ資源管理部12が割り当てたもの
である。このメモリ資源管理IDにより、単位処理終了
時に同一のIDに属するメモリ資源を一括して返却する
ことが可能となる。これは、例えば、ファイルの内容を
メモリ中に展開する場合に、ファイル単位にメモリ資源
管理IDを取得しておくことにより、あるファイルの処
理終了時に、そのファイルの処理に使用したメモリを一
括して返却することが可能とする。
The above-mentioned memory resource management ID is assigned by the memory resource management unit 12 to the request source process ID in the upper order and the integer unique to the process ID in the lower order. With this memory resource management ID, it is possible to collectively return memory resources belonging to the same ID at the end of unit processing. This is because, for example, when expanding the contents of a file in the memory, by acquiring the memory resource management ID for each file, the memory used for the processing of the file is collected at the end of the processing of the certain file. It is possible to return it.

【0010】次に、プロセス15は、メモリ資源管理部
12に対して、メモリ資源利用の要求を発行する(ステ
ップ51)。要求の内容は、メモリ資源管理ID,メモリ
1片の大きさ(単位サイズ),メモリ片の個数とする。要
求を受けたメモリ資源管理部12は、利用可能メモリ資
源記憶部14に登録されている資源を参照して、プロセ
ス15からの要求のすべてを満たせるかどうかを判断す
る(ステップ52)。初期状態では、利用可能メモリ資源記
憶部14に登録されている資源はなく、プロセスからの
要求を満たせない。そこで、ステップ56に進み、システ
ムの運用上最適なサイズ(例えば、ページングサイズや
セグメントサイズなど)を単位として、メモリ割り当て
の要求をシステムに対して出す(ステップ56)。
Next, the process 15 issues a memory resource use request to the memory resource management unit 12 (step 51). The contents of the request are the memory resource management ID, the size of one piece of memory (unit size), and the number of pieces of memory. Upon receipt of the request, the memory resource management unit 12 refers to the resource registered in the available memory resource storage unit 14 and determines whether all the requests from the process 15 can be satisfied (step 52). In the initial state, there is no resource registered in the available memory resource storage unit 14, and the request from the process cannot be satisfied. Therefore, the process proceeds to step 56, and a memory allocation request is issued to the system in units of the optimum size for system operation (for example, paging size, segment size, etc.) (step 56).

【0011】メモリ資源管理部12は、取得したメモリ
資源を利用可能メモリ資源記憶部14に登録する(ステ
ップ57)。その後、再び、ステップ52に戻り、プロセス
15からの要求のすべてを満たせるかどうかを判断す
る。今回は、要求を満たせる資源が存在するので、ステ
ップ53に進み、利用可能メモリ資源記憶部14からプロ
セス15に分配する。分配は、要求個数分を繰り返す
(ステップ52〜54)。このとき、分配状況を利用中メモリ
資源管理部13に登録するが、利用中メモリ資源管理部
13内においては、プロセス15に分配するメモリ資源
は、その要求単位長さを複数連続させたメモリ塊として
管理する。
The memory resource management unit 12 registers the acquired memory resource in the available memory resource storage unit 14 (step 57). Then, the process returns to step 52 again, and it is determined whether all the requests from the process 15 can be satisfied. Since there are resources that can satisfy the request this time, the process proceeds to step 53 and is distributed from the available memory resource storage unit 14 to the process 15. Distribution is repeated for the requested number.
(Steps 52-54). At this time, the distribution status is registered in the in-use memory resource management unit 13. In the in-use memory resource management unit 13, the memory resource to be distributed to the process 15 is a memory block in which a plurality of request unit lengths are continuous. Manage as.

【0012】なお、ここで、部分的に残ったメモリ資源
は、利用可能メモリ資源記憶部14に、アドレス順・サ
イズ順の論理構造を壊さないように登録して、以後の要
求に備える。その後、メモリ資源管理部12は、プロセ
ス15に渡すメモリ資源を、図2に示す如きリスト形式
にして、要求元プロセスに渡す(ステップ55)。上述の如
き動作によれば、システムの運用上最適なサイズを取得
して、ここからプロセスへの割り当てを行うようにした
ので、オペレーティングシステムの負荷を軽減し、メモ
リ資源を有効に活用することが可能になる。
Here, the partially remaining memory resources are registered in the available memory resource storage unit 14 so as not to destroy the logical structure in the address order / size order, to prepare for the subsequent request. After that, the memory resource management unit 12 transfers the memory resources to be passed to the process 15 to the requesting process in a list format as shown in FIG. 2 (step 55). According to the above-described operation, the optimum size for system operation is acquired and the process is allocated from here, so the load on the operating system can be reduced and memory resources can be effectively used. It will be possible.

【0013】なお、プロセス15で取得したメモリ片が
不要になった場合には、要求した個数の全部または一部
を、図2に示す如き形式で、1片当たりのサイズととも
に、メモリ資源管理部12へ返す。この場合、メモリ資
源管理IDを指定して、そのIDに属するメモリ資源を
一括返却できるものとする(ステップ66)。また、メモリ
資源管理部12は、プロセス15に分配したメモリ資源
を、要求元プロセスIDと関連付けて管理しており、定
期的に利用中のプロセスIDを監視することにより、要
求元プロセス終了時には、そのプロセスに属するメモリ
資源の自動返却処理を行うものとする。
When the memory pieces acquired in the process 15 are no longer needed, all or part of the requested number is stored in the format shown in FIG. 2 together with the size of one piece and the memory resource management unit. Return to 12. In this case, the memory resource management ID can be designated to collectively return the memory resources belonging to the ID (step 66). Further, the memory resource management unit 12 manages the memory resources distributed to the process 15 in association with the request source process ID, and periodically monitors the process ID being used, so that when the request source process ends, The memory resource belonging to the process is automatically returned.

【0014】メモリ資源管理部12は、プロセスから返
却されたメモリ資源をアドレス順に組立て(ステップ6
4)、システムとのメモリ資源授受の単位でシステムへ返
却可能なものは返却し(ステップ65,67)、残りを利用可
能資源記憶部に登録する。すなわち、システムとのメモ
リ授受単位で完全なものを利用可能メモリ資源記憶部内
に保持することはない。本動作によれば、資源取得時と
同様に、オペレーティングシステムの負荷を軽減し、メ
モリ資源を有効に活用することが可能になる。なお、上
記実施例は本発明の一例を示したものであり、本発明は
これに限定されるべきものではないことは言うまでもな
いことである。
The memory resource management unit 12 assembles the memory resources returned from the process in the order of addresses (step 6
4) Return those that can be returned to the system in units of memory resource exchange with the system (steps 65 and 67), and register the rest in the available resource storage unit. That is, a complete memory transfer unit with the system is not held in the available memory resource storage unit. According to this operation, the load on the operating system can be reduced and the memory resources can be effectively used, as in the case of acquiring the resources. It is needless to say that the above embodiment shows one example of the present invention, and the present invention should not be limited to this.

【0015】[0015]

【発明の効果】以上、詳細に説明した如く、本発明によ
れば、オペレーティングシステムの負荷を軽減し、メモ
リ資源を有効に活用可能とするメモリ資源の管理システ
ムを実現できるという顕著な効果を奏するものである。
より具体的に述べれば、同サイズの複数メモリ片の割り
当て要求を、1回のシステムコールに置き換えるので、
オペレーティングシステムの負荷を軽減することがで
き、総数制限を回避できる。また、処理単位やデータグ
ループ単位にメモリ返却処理ができるため、メモリ資源
返却時の処理が簡略化でき、また、返却漏れも防止でき
る。
As described above in detail, according to the present invention, it is possible to realize a memory resource management system that reduces the load on the operating system and enables effective use of memory resources. It is a thing.
More specifically, since an allocation request for a plurality of memory pieces of the same size is replaced with one system call,
The load on the operating system can be reduced and the total number limit can be avoided. In addition, since the memory return processing can be performed in processing units or data group units, the processing when returning memory resources can be simplified, and omission of return can be prevented.

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

【図1】本発明の一実施例に係るメモリ資源の管理方法
を採用した処理システムのブロック構成図である。
FIG. 1 is a block diagram of a processing system that employs a memory resource management method according to an embodiment of the present invention.

【図2】物理的に不連続なエリアをアドレスポインタを
用いて論理的に連結して、情報をメモリ内に保持する方
法を示す。
FIG. 2 illustrates a method of logically concatenating physically discontinuous areas using address pointers to retain information in memory.

【図3】図1に示した実施例中の利用中メモリ資源記憶
部13の論理構造を示す図である。
FIG. 3 is a diagram showing a logical structure of an in-use memory resource storage unit 13 in the embodiment shown in FIG.

【図4】図1に示した実施例中の利用可能メモリ資源記
憶部14の論理構造を示す図である。
4 is a diagram showing a logical structure of an available memory resource storage unit 14 in the embodiment shown in FIG.

【図5】メモリ割り当て要求時の処理の流れを示す図で
ある。
FIG. 5 is a diagram showing a processing flow when a memory allocation request is made;

【図6】メモリ返却要求時の処理の流れを示す図であ
る。
FIG. 6 is a diagram showing a flow of processing when a memory return request is made.

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

11 処理システム 12 メモリ資源管理部 13 利用中資源記憶部 14 利用可能メモリ資源記憶部 15 メモリ資源の割り当て,返却要求元となるプロセ
ス群 16 オペレーティングシステム 17 メモリ資源
11 processing system 12 memory resource management unit 13 in-use resource storage unit 14 available memory resource storage unit 15 process group that is a source of allocation and return request of memory resource 16 operating system 17 memory resource

Claims (1)

【特許請求の範囲】[Claims] 【請求項1】 アプリケーションプログラムがオペレー
ティングシステムに割り当て要求を行ってメモリ資源を
使用する計算機システムにおいて、前記オペレーティン
グシステムとアプリケーションプログラムとの間にあっ
て、アプリケーションプログラムが使用するメモリ資源
を管理するメモリ資源管理部を設け、該メモリ資源管理
部は、割り当てるメモリ資源と要求元プロセスIDとを
関連付けて、可能な要求を集約した形で受け付け、ま
た、前記要求元プロセスの終了時には、当該プロセスに
属するメモリ資源の一括解放を行うことを特徴とするメ
モリ資源の管理システム。
1. A computer system in which an application program makes an allocation request to an operating system to use memory resources, and a memory resource management unit is located between the operating system and the application program and manages memory resources used by the application program. The memory resource management unit associates the memory resource to be allocated with the request source process ID and accepts possible requests in an aggregated form. When the request source process ends, the memory resource management unit A memory resource management system characterized by batch release.
JP4816795A 1995-03-08 1995-03-08 Management system for memory resources Pending JPH08249226A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP4816795A JPH08249226A (en) 1995-03-08 1995-03-08 Management system for memory resources

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP4816795A JPH08249226A (en) 1995-03-08 1995-03-08 Management system for memory resources

Publications (1)

Publication Number Publication Date
JPH08249226A true JPH08249226A (en) 1996-09-27

Family

ID=12795844

Family Applications (1)

Application Number Title Priority Date Filing Date
JP4816795A Pending JPH08249226A (en) 1995-03-08 1995-03-08 Management system for memory resources

Country Status (1)

Country Link
JP (1) JPH08249226A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100772872B1 (en) * 2006-02-24 2007-11-02 삼성전자주식회사 Apparatus and method for managing resource using virtual ID under multiple java applications environment
US8302103B2 (en) 2007-03-28 2012-10-30 Samsung Electronics Co., Ltd. System and method for managing resources of applications and threads performed on java virtual machine

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100772872B1 (en) * 2006-02-24 2007-11-02 삼성전자주식회사 Apparatus and method for managing resource using virtual ID under multiple java applications environment
US8302103B2 (en) 2007-03-28 2012-10-30 Samsung Electronics Co., Ltd. System and method for managing resources of applications and threads performed on java virtual machine

Similar Documents

Publication Publication Date Title
Krueger et al. The stealth distributed scheduler
US5590334A (en) Object oriented message passing system and method
JP3555846B2 (en) Thread server performance enhancement method and apparatus
US20030101324A1 (en) Dynamic self-tuning memory management method and system
US20040221290A1 (en) Management of virtual machines to utilize shared resources
JPH07319715A (en) Hierarchical resource management method
EP1168182A1 (en) Scratch segment subsystem for a parallel processing database system
JP3832341B2 (en) Memory pool management method
JPH08221372A (en) Free resource management device in distributed processing system
JPH08249226A (en) Management system for memory resources
JPH10301796A (en) Inter-system data piping method
JP2000081986A (en) Method for managing job in client-server type operation processing system and recording medium storing program for the method
JP2001282551A (en) Job processor and job processing method
JPH10143382A (en) Method for managing resource for shared memory multiprocessor system
JPH10198643A (en) Distributed computer system
JPH10289219A (en) Client-server system, cache management method and recording medium
CN112433840A (en) Dynamic storage resource partitioning method for high-performance computing
JPH10307733A (en) Inter-system data piping system
JPH05265844A (en) Memory utilizing system
JPH03265948A (en) Buffer pool controller
Lien et al. Design and Performance Study of DDBLMN; A Distributed Database on a Local Computer System
JPH0586574B2 (en)
JPH09330241A (en) Exclusive deadlock prevention control system
CN117931421A (en) Research method of exclusive CPU core resource management model in cluster
JPH09330256A (en) Method monitoring performance of data base system through buffer optimization