WO2001031454A1 - Verfahren zur dynamischen speicherverwaltung - Google Patents
Verfahren zur dynamischen speicherverwaltung Download PDFInfo
- Publication number
- WO2001031454A1 WO2001031454A1 PCT/EP2000/010492 EP0010492W WO0131454A1 WO 2001031454 A1 WO2001031454 A1 WO 2001031454A1 EP 0010492 W EP0010492 W EP 0010492W WO 0131454 A1 WO0131454 A1 WO 0131454A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- memory
- program
- pool
- sections
- program part
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/50—Allocation of resources, e.g. of the central processing unit [CPU]
- G06F9/5005—Allocation of resources, e.g. of the central processing unit [CPU] to service a request
- G06F9/5011—Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resources being hardware resources other than CPUs, Servers and Terminals
- G06F9/5016—Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resources being hardware resources other than CPUs, Servers and Terminals the resource being the memory
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F12/00—Accessing, addressing or allocating within memory systems or architectures
- G06F12/02—Addressing or allocation; Relocation
- G06F12/0223—User address space allocation, e.g. contiguous or non contiguous base addressing
- G06F12/023—Free address space management
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10—TECHNICAL SUBJECTS COVERED BY FORMER USPC
- Y10S—TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10S707/00—Data processing: database and file management or data structures
- Y10S707/99951—File or database maintenance
- Y10S707/99952—Coherency, e.g. same view to multiple users
- Y10S707/99953—Recoverability
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10—TECHNICAL SUBJECTS COVERED BY FORMER USPC
- Y10S—TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10S707/00—Data processing: database and file management or data structures
- Y10S707/99951—File or database maintenance
- Y10S707/99956—File allocation
- Y10S707/99957—Garbage collection
Definitions
- the invention relates to a method for dynamic memory management according to the preamble of claim 1.
- the disadvantage here is that as long as there are memory blocks in the pool, at least one memory block is removed from the pool when a memory request is made. As soon as there is no more memory block in the pool, the existing physical memory must be searched for a free memory block, which can take a relatively long time. This happens regardless of whether memory is required for a program part that has to be processed in real time or for a program part that is not so time-critical.
- a method for memory access is known from US Pat. No. 5,930,141, which is said to have no adverse influence on the execution of an NC program. A first and a second memory are available, the access time to the second memory being longer than to the first memory. The NC program is stored in the first memory.
- NC program blocks are divided into those whose execution can wait and those whose execution cannot wait.
- the second memory is to be accessed while the NC program is being processed, it is checked whether the next instruction to be executed in the next program block of the NC program comes from a program block that can wait. Then the access to the memory is carried out before the instruction in the next program block. If the instruction in the next program block of the NC program cannot wait, the next program block is executed immediately afterwards without first accessing the memory.
- the disadvantage here is that only slower memory is accessed here, but no allocation of memory.
- Another disadvantage is that a program block contains only one instruction. As a result, an identifier must be added to each individual instruction whether the instruction may wait or not and this identifier must be checked during the execution of the program.
- Another disadvantage is that memory access, regardless of how important it is, may not be carried out and this can result in a not inconsiderable delay.
- the method according to the invention has the advantage that a distinction is made between program parts which have to be processed in real time and which therefore have to be allocated memory space particularly quickly and program parts which do not have to be processed in real time and which therefore do not have to be allocated memory space so quickly ,
- the priority of the program part from which the memory request comes is evaluated.
- memory sections in a pool only have to be stored for program parts which have to be processed in real time and which therefore have a minimum priority, which reduces the memory space to be stored for a memory request in the pool.
- the free memory is searched for a suitable memory area.
- each individual program instruction is not assigned its own priority, but rather entire program parts that consist of several program instructions. Since individual program instructions usually do not perform a complete function anyway, the same priority must usually be assigned to several program instructions that follow one another in any case. By assigning a priority to program parts, it is much less necessary to check which priority is currently being used. This speeds up program execution.
- Fig. 2 a first and second procedure for memory allocation.
- step 2 If, as shown in FIG. 1, there is a request 1 for the main memory of the processor by an NC program part when an NC program of an NC control is being processed, a distinction is made in step 2 as to what priority the program part requesting the memory has .
- the priority corresponds to at least a minimum priority
- the program part works in real time and must also be allocated the requested memory in real time according to a first method 3. This is done by determining in steps 3a and 3c how much memory has been requested and then a 4 kbyte memory section is allocated in step 3b from a previously used memory pool SP1 (FIG.
- step 4a it is first checked in step 4a whether access to a fragment list FL, into which all and unused memory areas are entered, is locked. If this is not the case, the fragment list FL is searched for a memory section that matches the memory request, otherwise the system waits until the fragment list FL is released for access. During an access, the fragment list FL is blocked for further access by means of the semaphore Sp. If a suitable memory section was found, this is identified in step 4c in the fragment list FL as occupied by the requesting program part and assigned to the requesting program part in step 4d. Subsequently, the fragment list FL is released again for access by means of the semaphore Sp.
- FIG. 1 A possible implementation of the memory management according to the invention is shown in FIG.
- a memory section SP1 that has been reserved for this pool SP1 and that is at least as large as the requested memory is allocated to the program part from a memory pool SP1 .
- No allocation of the semaphore SP is necessary when assigning and releasing, since an occupied element and thus also its management information of the fragment list FL cannot be changed by another party.
- a plurality of memory pools SP1-SP3 are advantageously provided, each of which contains memory sections of the same size. For example, memory sections with a first size of 4 kbytes are reserved in a first memory pool SP1, memory sections with a second size of 8 kbytes in a second memory pool SP2 and memory sections with a third size of 16 kbytes are reserved in a third memory pool SP3 , So the size is always doubled.
- the sizes of the memory sections in the memory pools SP1-SP3 are selected such that on the one hand not unnecessarily much memory space is wasted, for example by having to allocate a 16 kByte memory section for a request over 3 kByte because smaller memory sections are not available.
- the size of the memory sections is chosen so that several memory blocks are not allocated for a memory request. This must be the case if, for example, 10 kbytes are requested and then a block with 64 kbytes has to be assigned because 16 kbyte memory sections are not available.
- Each memory pool SP1 - SP3 contains information about the current memory capacity, in particular it has a certain fill level, which indicates how many memory sections in the memory pool SP1 - SP3 are reserved. Furthermore, each storage pool SP1 - SP3 is assigned a minimum fill level MinP and a maximum fill level MaxP.
- the minimum fill level MinP indicates from which fill level a maintenance thread WT is activated in order to occupy new memory sections for the respective memory pool SP1 - SP3.
- the maximum fill level MaxP indicates the fill level from which a maintenance thread WT is activated, so that unnecessary memory sections are removed from the memory pool SP1-SP3 and memory is released for other purposes.
- each memory pool SP1-SP3 is provided with a reference to the first memory section in the list of memory sections present in the respective memory pool SP1-SP3.
- Each memory section contains a reference to the next memory section of the memory pool SP1-SP3, so that the memory sections of each memory pool SP1-SP3 refer to one another as a linked list, as is shown in FIG. 2.
- the minimum fill level MinP is increased by the value by which this minimum value of the minimum fill level MinP was undershot.
- the maximum fill level MaxP is defined as a certain multiple, for example twice, the minimum fill level MinP and is adapted accordingly to the new value for the minimum fill level MinP.
- the Memory requirements are therefore divided into groups, depending on the size of the required memory section, which differ in size by integer multiples of 4 kbytes.
- the number of memory pools SP1 - SP3, the minimum fill level and the maximum fill level in each memory pool SP1 - SP3 and the size of the memory sections in the memory pools SP1 - SP3 can then be determined .
- the values determined in this way can be stored in a non-volatile memory for each memory pool SP1-SP3 and taken into account the next time the program is started. In this way, parameters for the memory management are set adaptively and optimize themselves.
- a non-volatile memory can be provided for each memory pool SP1 - SP3, in which the absolute minimum of the fill level of the respective memory pool SP1 - SP3 is stored. By reading this memory, minimum fill levels of the memory pools SP1-SP3 can also be recognized, which occur during real-time processing, during which the maintenance thread WT has no access to the fill level of the memory pools SP1-SP3.
- the maintenance thread WT advantageously receives a priority that is immediately below the threshold for real-time processing. This ensures that immediately after the completion of program parts that are processed in real time, it is checked whether the number of memory sections in the memory pools SP1 - SP3 is still above the minimum fill level MinP and possibly was always in real time during program execution.
- a second procedure is used to allocate memory.
- the WT maintenance thread first checks a semaphore Sp.
- This semaphore Sp indicates whether a fragment list FL is currently being used for storage.
- a fragment list FL At least its size, start address and occupancy status (free or occupied) are stored for each memory area of the physical memory.
- the maintenance thread must wait until the fragment list FL is free again, which is recognized by the semaphore SP.
- the maintenance thread WT searches for a free memory area from the fragment list FL that has at least the requested size. The required amount of memory is occupied for the requesting program part and allocated to the requesting program part.
- An alternative for the allocation of memory areas in real time according to a first procedure is that only a single memory pool is provided, which contains memory sections with a minimum size of, for example, 4 kbytes. Furthermore, a memory manager is provided which transcodes logical addresses into physical addresses and vice versa. Then, in the event of a memory request in real time, as many memory sections are removed from the memory pool and provided with immediately successive addresses by the memory manager until the requested memory size is at least reached and the memory area composed in this way is assigned to the requesting program part.
- the first three memory sections of the linked list are selected from a memory pool with 4 kbyte memory sections. These memory sections can be arranged as desired in the available physical memory, in particular not in immediate succession.
- the memory manager recodes logical addresses into physical addresses and vice versa for these three memory sections in such a way that the logical addresses of the three memory sections follow one another directly. This creates a coherent address space for the requested memory area and can be used by the request- the program can be allocated as a contiguous memory area.
- the memory areas that are no longer required can be put back into the memory pools SP1 - SP3.
- the fragment list FL checks the size of the memory area returned by the program. Subsequently, this memory section is marked as reserved in the fragment list FL and attached to the linked list of the appropriate memory pool. If the fill level of the memory pool then exceeds the maximum size MaxP, memory sections are removed from the linked list by the maintenance thread WT and marked as free in the fragment list FL.
- memory areas that are no longer required by the program can be entered in a separate list.
- the maintenance area marks the memory area entered in this list as free in the fragment list FL. This means that there is no need to determine the length of the memory areas that are no longer required and there is no need to enter a memory pool, which leads to faster release.
- Another advantage is that memory areas can also be released in this way, for the size of which no memory pool exists.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Software Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Memory System (AREA)
- Debugging And Monitoring (AREA)
- Memory System Of A Hierarchy Structure (AREA)
Abstract
Description
Claims
Priority Applications (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2001533522A JP2003523555A (ja) | 1999-10-27 | 2000-10-25 | 記憶装置を動的に管理する方法 |
US10/111,885 US7035990B1 (en) | 1999-10-27 | 2000-10-25 | Method for dynamic memory management |
EP00974452A EP1228432B1 (de) | 1999-10-27 | 2000-10-25 | Verfahren zur dynamischen speicherverwaltung |
DE50015218T DE50015218D1 (de) | 1999-10-27 | 2000-10-25 | Verfahren zur dynamischen speicherverwaltung |
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
DE19951716A DE19951716A1 (de) | 1999-10-27 | 1999-10-27 | Verfahren zur dynamischen Speicherverwaltung |
DE19951716.9 | 1999-10-27 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2001031454A1 true WO2001031454A1 (de) | 2001-05-03 |
Family
ID=7927032
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/EP2000/010492 WO2001031454A1 (de) | 1999-10-27 | 2000-10-25 | Verfahren zur dynamischen speicherverwaltung |
Country Status (6)
Country | Link |
---|---|
US (1) | US7035990B1 (de) |
EP (1) | EP1228432B1 (de) |
JP (1) | JP2003523555A (de) |
AT (1) | ATE398807T1 (de) |
DE (2) | DE19951716A1 (de) |
WO (1) | WO2001031454A1 (de) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
DE102007026693A1 (de) * | 2007-06-08 | 2008-12-11 | Robert Bosch Gmbh | Verfahren und Vorrichtung zum Umorganisieren von Daten in einem Speichersystem, insbesondere für Steuergeräte in Kraftfahrzeugen |
CN102253893A (zh) * | 2011-04-02 | 2011-11-23 | 赵悦 | 一种内存扩展方法 |
Families Citing this family (24)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8060680B2 (en) * | 2002-09-16 | 2011-11-15 | Hewlett-Packard Development Company, L.P. | Method of allocating memory |
JP4175185B2 (ja) * | 2003-06-06 | 2008-11-05 | 日本電気株式会社 | ネットワーク情報記録装置 |
US7814554B1 (en) * | 2003-11-06 | 2010-10-12 | Gary Dean Ragner | Dynamic associative storage security for long-term memory storage devices |
US20050144401A1 (en) * | 2003-12-30 | 2005-06-30 | Pantalone Brett A. | Multiprocessor mobile terminal with shared memory arbitration |
JP2005301801A (ja) * | 2004-04-14 | 2005-10-27 | Nec Corp | 情報処理装置、メモリ管理装置、およびプログラム |
US7574419B2 (en) * | 2004-05-13 | 2009-08-11 | Oracle International Corporation | Automatic tuning of undo retention |
US8756200B2 (en) * | 2004-05-14 | 2014-06-17 | Oracle International Corporation | Undo advisor |
JP2005339299A (ja) * | 2004-05-28 | 2005-12-08 | Hitachi Ltd | ストレージ装置のキャッシュ制御方法 |
JP4144609B2 (ja) * | 2004-09-29 | 2008-09-03 | ソニー株式会社 | 情報処理装置、メモリ領域管理方法、並びにコンピュータ・プログラム |
US7689794B2 (en) * | 2004-10-22 | 2010-03-30 | Scientific-Atlanta, Llc | System and method for handling memory allocation failures through reserve allocation of event data |
US7801932B2 (en) * | 2005-10-11 | 2010-09-21 | Oracle International Corporation | Undo hints to speed up segment extension and tuning of undo retention |
US7885939B2 (en) * | 2005-10-11 | 2011-02-08 | Oracle International Corporation | Longest query duration for auto tuning undo retention |
US7516274B2 (en) * | 2005-11-15 | 2009-04-07 | Sun Microsystems, Inc. | Power conservation via DRAM access reduction |
US7873788B1 (en) | 2005-11-15 | 2011-01-18 | Oracle America, Inc. | Re-fetching cache memory having coherent re-fetching |
US7934054B1 (en) | 2005-11-15 | 2011-04-26 | Oracle America, Inc. | Re-fetching cache memory enabling alternative operational modes |
US7899990B2 (en) * | 2005-11-15 | 2011-03-01 | Oracle America, Inc. | Power conservation via DRAM access |
US7958312B2 (en) * | 2005-11-15 | 2011-06-07 | Oracle America, Inc. | Small and power-efficient cache that can provide data for background DMA devices while the processor is in a low-power state |
US7788243B2 (en) * | 2006-09-08 | 2010-08-31 | Sybase, Inc. | System and methods for optimizing data transfer among various resources in a distributed environment |
JP5016880B2 (ja) * | 2006-09-21 | 2012-09-05 | 富士通株式会社 | 優先クラスに応じたメモリ管理方法及び装置 |
US7831772B2 (en) * | 2006-12-12 | 2010-11-09 | Sybase, Inc. | System and methodology providing multiple heterogeneous buffer caches |
JP2012221217A (ja) * | 2011-04-08 | 2012-11-12 | Sony Corp | メモリ管理装置、メモリ管理方法、および、制御プログラム |
US9218206B2 (en) * | 2011-06-20 | 2015-12-22 | Microsoft Technology Licensing, Llc | Memory management model and interface for new applications |
CN103246568A (zh) * | 2013-04-16 | 2013-08-14 | 深圳桑菲消费通信有限公司 | 一种通过手机设置应用优先级的方法和装置 |
CN106648907A (zh) * | 2017-02-24 | 2017-05-10 | 郑州云海信息技术有限公司 | 一种提高内存复用的方法和装置 |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5367637A (en) * | 1992-03-26 | 1994-11-22 | International Business Machines Corporation | Self-tuning virtual storage management for dedicated real-time computer system |
US5579508A (en) * | 1990-03-08 | 1996-11-26 | Hitachi, Ltd. | Main memory managing method and apparatus in which main memory is partitioned into three distinct areas |
EP0844564A2 (de) * | 1996-11-25 | 1998-05-27 | Nortel Networks Corporation | Speicherverwaltungssystem |
US5784698A (en) * | 1995-12-05 | 1998-07-21 | International Business Machines Corporation | Dynamic memory allocation that enalbes efficient use of buffer pool memory segments |
WO2000005652A1 (en) * | 1998-07-24 | 2000-02-03 | Sun Microsystems, Inc. | Method and apparatus for achieving deterministic memory allocation response in a computer system |
Family Cites Families (12)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH04314147A (ja) * | 1991-04-12 | 1992-11-05 | Nec Corp | メモリ管理方式 |
DE4224080C1 (de) * | 1992-07-21 | 1994-01-05 | Siemens Ag | Verfahren zur dynamischen Verwaltung eines freien Speichers einer Rechenanlage, des Freispeichers, für den eine Unterteilung in wenigstens zwei logische Speicherbereiche, die sich in ihren Zugriffseigenschaften unterscheiden, vorgesehen ist |
US5727185A (en) * | 1992-07-21 | 1998-03-10 | Siemens Aktiengesellschaft | Memory allocation method for allocating two logical store areas to a free store, that is one common physical store area of a computer |
US5535364A (en) * | 1993-04-12 | 1996-07-09 | Hewlett-Packard Company | Adaptive method for dynamic allocation of random access memory to procedures having differing priorities based on first and second threshold levels of free RAM |
US5680573A (en) * | 1994-07-12 | 1997-10-21 | Sybase, Inc. | Method of buffering data objects in a database |
JP2874571B2 (ja) * | 1994-12-14 | 1999-03-24 | 日本電気株式会社 | メモリ管理装置 |
JP3451594B2 (ja) * | 1995-12-21 | 2003-09-29 | 株式会社森精機ハイテック | 数値制御装置における記憶手段アクセス制御方法および数値制御装置 |
US5819304A (en) * | 1996-01-29 | 1998-10-06 | Iowa State University Research Foundation, Inc. | Random access memory assembly |
US5784699A (en) * | 1996-05-24 | 1998-07-21 | Oracle Corporation | Dynamic memory allocation in a computer using a bit map index |
US5978893A (en) * | 1996-06-19 | 1999-11-02 | Apple Computer, Inc. | Method and system for memory management |
US5905889A (en) * | 1997-03-20 | 1999-05-18 | International Business Machines Corporation | Resource management system using next available integer from an integer pool and returning the integer thereto as the next available integer upon completion of use |
US6046817A (en) * | 1997-05-12 | 2000-04-04 | Lexmark International, Inc. | Method and apparatus for dynamic buffering of input/output ports used for receiving and transmitting print data at a printer |
-
1999
- 1999-10-27 DE DE19951716A patent/DE19951716A1/de not_active Withdrawn
-
2000
- 2000-10-25 US US10/111,885 patent/US7035990B1/en not_active Expired - Fee Related
- 2000-10-25 JP JP2001533522A patent/JP2003523555A/ja active Pending
- 2000-10-25 AT AT00974452T patent/ATE398807T1/de not_active IP Right Cessation
- 2000-10-25 WO PCT/EP2000/010492 patent/WO2001031454A1/de active IP Right Grant
- 2000-10-25 EP EP00974452A patent/EP1228432B1/de not_active Expired - Lifetime
- 2000-10-25 DE DE50015218T patent/DE50015218D1/de not_active Expired - Lifetime
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5579508A (en) * | 1990-03-08 | 1996-11-26 | Hitachi, Ltd. | Main memory managing method and apparatus in which main memory is partitioned into three distinct areas |
US5367637A (en) * | 1992-03-26 | 1994-11-22 | International Business Machines Corporation | Self-tuning virtual storage management for dedicated real-time computer system |
US5784698A (en) * | 1995-12-05 | 1998-07-21 | International Business Machines Corporation | Dynamic memory allocation that enalbes efficient use of buffer pool memory segments |
EP0844564A2 (de) * | 1996-11-25 | 1998-05-27 | Nortel Networks Corporation | Speicherverwaltungssystem |
WO2000005652A1 (en) * | 1998-07-24 | 2000-02-03 | Sun Microsystems, Inc. | Method and apparatus for achieving deterministic memory allocation response in a computer system |
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
DE102007026693A1 (de) * | 2007-06-08 | 2008-12-11 | Robert Bosch Gmbh | Verfahren und Vorrichtung zum Umorganisieren von Daten in einem Speichersystem, insbesondere für Steuergeräte in Kraftfahrzeugen |
US8010737B2 (en) | 2007-06-08 | 2011-08-30 | Robert Bosch Gmbh | Method and device for reorganizing data in a memory system, in particular for control devices in motor vehicles |
CN102253893A (zh) * | 2011-04-02 | 2011-11-23 | 赵悦 | 一种内存扩展方法 |
Also Published As
Publication number | Publication date |
---|---|
DE50015218D1 (de) | 2008-07-31 |
DE19951716A1 (de) | 2001-05-03 |
EP1228432A1 (de) | 2002-08-07 |
JP2003523555A (ja) | 2003-08-05 |
US7035990B1 (en) | 2006-04-25 |
EP1228432B1 (de) | 2008-06-18 |
ATE398807T1 (de) | 2008-07-15 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
EP1228432B1 (de) | Verfahren zur dynamischen speicherverwaltung | |
DE69930855T2 (de) | Verfahren und vorrichtung zur durchführung einer deterministischen speicherzuordnungsantwort in einem computer-system | |
EP0703534B1 (de) | Speicherverwaltungssystem eines Rechnersystems | |
DE69325992T2 (de) | Adaptives Verfahren zur Zuweisung von Speicher mit wahlfreiem Zugriff an Prozeduren mit unterschiedlichen Prioritäten | |
DE2517302A1 (de) | Datenverarbeitungssystem mit mehrprogramm-verarbeitung | |
DE69729262T2 (de) | Speicherverwaltungssystem und Verfahren hierfür | |
DE10120615B4 (de) | Dynamische Speicherverwaltung für Objekte unterschiedlicher Größe | |
EP3475819A1 (de) | Verfahren zur automatischen und dynamischen zuteilung der zuständigkeit für aufgaben an die verfügbaren rechenkomponenten in einem hochverteilten datenverarbeitungssystem | |
WO2002039457A2 (de) | Speicherverwaltungslogik zur erweiterten nutzung von festwertspeichern | |
EP3368975A2 (de) | Verfahren und vorrichtung zum beschleunigten ausführen von applikationen | |
EP3583520B1 (de) | Verfahren zum betrieb eines datenspeichersystems, computerprogramm zur implementierung des verfahrens sowie nach dem verfahren arbeitendes datenspeichersystem | |
DE3787213T2 (de) | Verzögerungsverwaltungsverfahren und -vorrichtung. | |
EP3108360A1 (de) | Vergrössern des verfügbaren flash-speichers eines micro-controllers | |
EP2151762B1 (de) | Speicherverwaltung in einem portablen Datenträger | |
EP0651897B1 (de) | Verfahren zur dynamischen verwaltung eines freien speichers einer rechenanlage, des freispeichers, für den eine unterteilung in wenigstens zwei logische speicherbereiche, die sich in ihren zugriffseigenschaften unterscheiden, vorgesehen ist | |
EP2177990B1 (de) | Speicherverwaltung in einem portablen Datenträger | |
EP0556430B1 (de) | Verfahren zur Steuerung eines Peripheriesystems | |
WO2006131167A2 (de) | Verfahren zur speicherverwaltung von digitalen recheneinrichtungen | |
DE102017128944B4 (de) | Berechnen der optimalen Anzahl vorauszulesender LBNs pro CPU | |
EP2177995B1 (de) | Speicherverwaltung in einem portablen Datenträger | |
EP1728162A1 (de) | Speicherbereinigung (garbage collection) für smart cards | |
EP2021928B1 (de) | Verfahren und vorrichtung zur beschleunigung von prozessor-zugriffen | |
DE102022206298A1 (de) | Verfahren und Vorrichtung zum Verwalten eines Speichers für ein Fahrzeug und Speichervorrichtung | |
WO2001042923A2 (de) | Verfahren zum speichern von daten in einer datei eines datenspeichersystems | |
DE10128752A1 (de) | Verfahren zur Ablage von Daten in einen Speicherbaustein |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AK | Designated states |
Kind code of ref document: A1 Designated state(s): JP US |
|
AL | Designated countries for regional patents |
Kind code of ref document: A1 Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application | ||
DFPE | Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101) | ||
WWE | Wipo information: entry into national phase |
Ref document number: 2000974452 Country of ref document: EP |
|
ENP | Entry into the national phase |
Ref country code: JP Ref document number: 2001 533522 Kind code of ref document: A Format of ref document f/p: F |
|
WWP | Wipo information: published in national office |
Ref document number: 2000974452 Country of ref document: EP |
|
WWE | Wipo information: entry into national phase |
Ref document number: 10111885 Country of ref document: US |
|
WWG | Wipo information: grant in national office |
Ref document number: 2000974452 Country of ref document: EP |