Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
52e5f10e
提交
52e5f10e
authored
12月 11, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The reserve heap memory is no longer used.
上级
2609036a
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
1 行增加
和
35 行删除
+1
-35
Command.java
h2/src/main/org/h2/command/Command.java
+0
-2
Database.java
h2/src/main/org/h2/engine/Database.java
+0
-3
Message.java
h2/src/main/org/h2/message/Message.java
+1
-5
MemoryUtils.java
h2/src/main/org/h2/util/MemoryUtils.java
+0
-25
没有找到文件。
h2/src/main/org/h2/command/Command.java
浏览文件 @
52e5f10e
...
...
@@ -16,7 +16,6 @@ import org.h2.message.Message;
import
org.h2.message.Trace
;
import
org.h2.message.TraceObject
;
import
org.h2.result.ResultInterface
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.ObjectArray
;
/**
...
...
@@ -186,7 +185,6 @@ public abstract class Command implements CommandInterface {
public
int
executeUpdate
()
throws
SQLException
{
long
start
=
startTime
=
System
.
currentTimeMillis
();
Database
database
=
session
.
getDatabase
();
MemoryUtils
.
allocateReserveMemory
();
Object
sync
=
database
.
isMultiThreaded
()
?
(
Object
)
session
:
(
Object
)
database
;
session
.
waitIfExclusiveModeEnabled
();
boolean
callStop
=
true
;
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
52e5f10e
...
...
@@ -60,7 +60,6 @@ import org.h2.util.BitField;
import
org.h2.util.ByteUtils
;
import
org.h2.util.ClassUtils
;
import
org.h2.util.FileUtils
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.NetUtils
;
import
org.h2.util.New
;
import
org.h2.util.ObjectArray
;
...
...
@@ -224,7 +223,6 @@ public class Database implements DataHandler {
private
void
openDatabase
(
int
traceLevelFile
,
int
traceLevelSystemOut
,
boolean
closeAtVmShutdown
)
throws
SQLException
{
try
{
MemoryUtils
.
allocateReserveMemory
();
open
(
traceLevelFile
,
traceLevelSystemOut
);
if
(
closeAtVmShutdown
)
{
try
{
...
...
@@ -242,7 +240,6 @@ public class Database implements DataHandler {
}
}
catch
(
Throwable
e
)
{
if
(
e
instanceof
OutOfMemoryError
)
{
MemoryUtils
.
freeReserveMemory
();
e
.
fillInStackTrace
();
}
if
(
traceSystem
!=
null
)
{
...
...
h2/src/main/org/h2/message/Message.java
浏览文件 @
52e5f10e
...
...
@@ -16,7 +16,6 @@ import java.util.Properties;
import
java.util.Map.Entry
;
import
org.h2.constant.ErrorCode
;
import
org.h2.jdbc.JdbcSQLException
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.Resources
;
import
org.h2.util.StringUtils
;
...
...
@@ -299,10 +298,7 @@ public class Message {
*/
public
static
SQLException
convertThrowable
(
Throwable
e
)
{
if
(
e
instanceof
OutOfMemoryError
)
{
if
(
MemoryUtils
.
freeReserveMemory
())
{
return
getSQLException
(
ErrorCode
.
OUT_OF_MEMORY
,
e
);
}
throw
(
OutOfMemoryError
)
e
;
return
getSQLException
(
ErrorCode
.
OUT_OF_MEMORY
,
e
);
}
else
if
(
e
instanceof
StackOverflowError
||
e
instanceof
LinkageError
)
{
return
getSQLException
(
ErrorCode
.
GENERAL_ERROR_1
,
e
,
e
.
toString
());
}
else
if
(
e
instanceof
Error
)
{
...
...
h2/src/main/org/h2/util/MemoryUtils.java
浏览文件 @
52e5f10e
...
...
@@ -6,7 +6,6 @@
*/
package
org
.
h2
.
util
;
import
org.h2.constant.SysProperties
;
/**
* This is a utility class with functions to measure the free and used memory.
...
...
@@ -31,7 +30,6 @@ public class MemoryUtils {
private
static
long
lastGC
;
private
static
final
int
GC_DELAY
=
50
;
private
static
final
int
MAX_GC
=
8
;
private
static
volatile
byte
[]
reserveMemory
;
private
MemoryUtils
()
{
// utility class
...
...
@@ -78,29 +76,6 @@ public class MemoryUtils {
}
}
/**
* Allocate a little main memory that is freed up when if no memory is
* available, so that rolling back a large transaction is easier.
*/
public
static
void
allocateReserveMemory
()
{
if
(
reserveMemory
==
null
)
{
reserveMemory
=
new
byte
[
SysProperties
.
RESERVE_MEMORY
];
}
}
/**
* Free up the reserve memory.
*
* @return if memory could be freed up.
*/
public
static
boolean
freeReserveMemory
()
{
if
(
reserveMemory
==
null
)
{
return
false
;
}
reserveMemory
=
null
;
return
true
;
}
/**
* Create an array of bytes with the given size. If this is not possible
* because not enough memory is available, an OutOfMemoryError with the
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论