Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
90dfd857
提交
90dfd857
authored
11月 21, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove unused synchronization
上级
c05e083d
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
6 行增加
和
6 行删除
+6
-6
FreeSpaceBitSet.java
h2/src/main/org/h2/mvstore/FreeSpaceBitSet.java
+6
-6
没有找到文件。
h2/src/main/org/h2/mvstore/FreeSpaceBitSet.java
浏览文件 @
90dfd857
...
@@ -45,7 +45,7 @@ public class FreeSpaceBitSet {
...
@@ -45,7 +45,7 @@ public class FreeSpaceBitSet {
/**
/**
* Reset the list.
* Reset the list.
*/
*/
public
synchronized
void
clear
()
{
public
void
clear
()
{
set
.
clear
();
set
.
clear
();
set
.
set
(
0
,
firstFreeBlock
);
set
.
set
(
0
,
firstFreeBlock
);
}
}
...
@@ -57,7 +57,7 @@ public class FreeSpaceBitSet {
...
@@ -57,7 +57,7 @@ public class FreeSpaceBitSet {
* @param length the number of bytes
* @param length the number of bytes
* @return true if a block is in use
* @return true if a block is in use
*/
*/
public
synchronized
boolean
isUsed
(
long
pos
,
int
length
)
{
public
boolean
isUsed
(
long
pos
,
int
length
)
{
int
start
=
getBlock
(
pos
);
int
start
=
getBlock
(
pos
);
int
blocks
=
getBlockCount
(
length
);
int
blocks
=
getBlockCount
(
length
);
for
(
int
i
=
start
;
i
<
start
+
blocks
;
i
++)
{
for
(
int
i
=
start
;
i
<
start
+
blocks
;
i
++)
{
...
@@ -75,7 +75,7 @@ public class FreeSpaceBitSet {
...
@@ -75,7 +75,7 @@ public class FreeSpaceBitSet {
* @param length the number of bytes
* @param length the number of bytes
* @return true if a block is free
* @return true if a block is free
*/
*/
public
synchronized
boolean
isFree
(
long
pos
,
int
length
)
{
public
boolean
isFree
(
long
pos
,
int
length
)
{
int
start
=
getBlock
(
pos
);
int
start
=
getBlock
(
pos
);
int
blocks
=
getBlockCount
(
length
);
int
blocks
=
getBlockCount
(
length
);
for
(
int
i
=
start
;
i
<
start
+
blocks
;
i
++)
{
for
(
int
i
=
start
;
i
<
start
+
blocks
;
i
++)
{
...
@@ -92,7 +92,7 @@ public class FreeSpaceBitSet {
...
@@ -92,7 +92,7 @@ public class FreeSpaceBitSet {
* @param length the number of bytes to allocate
* @param length the number of bytes to allocate
* @return the start position in bytes
* @return the start position in bytes
*/
*/
public
synchronized
long
allocate
(
int
length
)
{
public
long
allocate
(
int
length
)
{
int
blocks
=
getBlockCount
(
length
);
int
blocks
=
getBlockCount
(
length
);
for
(
int
i
=
0
;;)
{
for
(
int
i
=
0
;;)
{
int
start
=
set
.
nextClearBit
(
i
);
int
start
=
set
.
nextClearBit
(
i
);
...
@@ -111,7 +111,7 @@ public class FreeSpaceBitSet {
...
@@ -111,7 +111,7 @@ public class FreeSpaceBitSet {
* @param pos the position in bytes
* @param pos the position in bytes
* @param length the number of bytes
* @param length the number of bytes
*/
*/
public
synchronized
void
markUsed
(
long
pos
,
int
length
)
{
public
void
markUsed
(
long
pos
,
int
length
)
{
int
start
=
getBlock
(
pos
);
int
start
=
getBlock
(
pos
);
int
blocks
=
getBlockCount
(
length
);
int
blocks
=
getBlockCount
(
length
);
set
.
set
(
start
,
start
+
blocks
);
set
.
set
(
start
,
start
+
blocks
);
...
@@ -123,7 +123,7 @@ public class FreeSpaceBitSet {
...
@@ -123,7 +123,7 @@ public class FreeSpaceBitSet {
* @param pos the position in bytes
* @param pos the position in bytes
* @param length the number of bytes
* @param length the number of bytes
*/
*/
public
synchronized
void
free
(
long
pos
,
int
length
)
{
public
void
free
(
long
pos
,
int
length
)
{
int
start
=
getBlock
(
pos
);
int
start
=
getBlock
(
pos
);
int
blocks
=
getBlockCount
(
length
);
int
blocks
=
getBlockCount
(
length
);
set
.
clear
(
start
,
start
+
blocks
);
set
.
clear
(
start
,
start
+
blocks
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论