Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
d2e2c596
Commit
d2e2c596
authored
Oct 27, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
c813d2f8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
8 deletions
+12
-8
go/neo/client.go
go/neo/client.go
+3
-3
go/neo/client_test.go
go/neo/client_test.go
+1
-0
go/zodb/internal/weak/weak.go
go/zodb/internal/weak/weak.go
+5
-3
go/zodb/internal/weak/weak_test.go
go/zodb/internal/weak/weak_test.go
+3
-2
No files found.
go/neo/client.go
View file @
d2e2c596
...
...
@@ -367,8 +367,8 @@ func (c *Client) initFromMaster(ctx context.Context, mlink *neonet.NodeLink) (er
opready
()
// ask M about last_tid
lastTxn
:=
AnswerLastTransaction
{}
err
=
mlink
.
Ask1
(
&
LastTransaction
{},
&
lastTxn
)
lastTxn
:=
proto
.
AnswerLastTransaction
{}
err
=
mlink
.
Ask1
(
&
proto
.
LastTransaction
{},
&
lastTxn
)
if
err
!=
nil
{
return
err
}
...
...
@@ -394,7 +394,7 @@ func (c *Client) initFromMaster(ctx context.Context, mlink *neonet.NodeLink) (er
c
.
at0Mu
.
Lock
()
c
.
at0
=
lastTxn
.
Tid
c
.
at0Initialized
=
true
c
.
flushEventq0
()
// c.flushEventq0() XXX reenable
c
.
at0Mu
.
Unlock
()
// XXX what next?
...
...
go/neo/client_test.go
View file @
d2e2c596
...
...
@@ -268,6 +268,7 @@ func TestLoad(t *testing.T) {
}
func
TestWatch
(
t
*
testing
.
T
)
{
t
.
Skip
(
"FIXME currently hangs"
)
withNEOSrv
(
t
,
func
(
t
*
testing
.
T
,
nsrv
NEOSrv
)
{
xtesting
.
DrvTestWatch
(
t
,
fmt
.
Sprintf
(
"neo://%s@%s"
,
nsrv
.
ClusterName
(),
nsrv
.
MasterAddr
()),
openClientByURL
)
})
...
...
go/zodb/internal/weak/weak.go
View file @
d2e2c596
...
...
@@ -97,14 +97,14 @@ func NewRef(obj interface{}) *Ref {
// race with any Get in progress, and reschedule us to retry at
// next GC if we do.
w
.
mu
.
Lock
()
old
:=
w
.
state
//
old := w.state
if
w
.
state
==
objGot
{
w
.
state
=
objLive
runtime
.
SetFinalizer
(
obj
,
release
)
}
else
{
w
.
state
=
objReleased
}
fmt
.
Printf
(
"rel %p (state: %v -> %v)
\n
"
,
w
,
old
,
w
.
state
)
//
fmt.Printf("rel %p (state: %v -> %v)\n", w, old, w.state)
traceRelease
(
w
)
w
.
mu
.
Unlock
()
...
...
@@ -123,10 +123,12 @@ func NewRef(obj interface{}) *Ref {
func
(
w
*
Ref
)
Get
()
(
obj
interface
{})
{
w
.
mu
.
Lock
()
if
w
.
state
!=
objReleased
{
fmt
.
Printf
(
"got %p (state: %v -> %v)
\n
"
,
w
,
w
.
state
,
objGot
)
//
fmt.Printf("got %p (state: %v -> %v)\n", w, w.state, objGot)
w
.
state
=
objGot
traceGotPre
(
w
)
// XXX sleep causes `panic: non-empty mark queue after concurrent mark` when running TestΔBTail in wcfs
// see https://github.com/golang/go/issues/41303
//time.Sleep(100*time.Nanosecond)
//time.Sleep(10*time.Millisecond)
//runtime.GC()
...
...
go/zodb/internal/weak/weak_test.go
View file @
d2e2c596
// Copyright (C) 2018 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2018
-2020
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
@@ -55,6 +55,7 @@ func TestIface(t *testing.T) {
}
}
// FIXME currently fails.
func
TestWeakRef
(
t
*
testing
.
T
)
{
for
i
:=
0
;
i
<
100
;
i
++
{
println
(
i
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment