Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Joshua
wendelin.core
Commits
0e5afa67
Commit
0e5afa67
authored
Jan 15, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
4bd88564
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
wcfs/internal/wcfs_test.pyx
wcfs/internal/wcfs_test.pyx
+2
-1
wcfs/wcfs.go
wcfs/wcfs.go
+6
-2
No files found.
wcfs/internal/wcfs_test.pyx
View file @
0e5afa67
...
...
@@ -20,7 +20,8 @@
# cython: language_level=2
# distutils: language=c++
"""Module wcfs_test complements wcfs_test.py with things that are not to implement in Python"""
"""Module wcfs_test.pyx complements wcfs_test.py with things that cannot be
implemented in Python."""
from
posix.signal
cimport
sigaction
,
sigaction_t
,
siginfo_t
,
SA_SIGINFO
from
libc.signal
cimport
SIGBUS
...
...
wcfs/wcfs.go
View file @
0e5afa67
...
...
@@ -31,13 +31,17 @@
// head/bigfile/<bigfileX> which represents always latest bigfile data.
// Clients that want to get isolation guarantee should subscribe for
// invalidations and re-mmap invalidated regions to file with pinned bigfile revision for
// the duration of their transaction. See "Isolation protocol" for details.
// the duration of their transaction
(*)
. See "Isolation protocol" for details.
//
// In the usual situation when bigfiles are big, and there are O(1)/δt updates,
// there should be no need for any cache besides shared kernel cache of latest
// bigfile data.
//
// XXX reference to wcfs client library.
// --------
//
// (*) wcfs servers comes accompanied by Python and C++ client packages that take
// care about isolation protocol details and provide to clients simple
// interface similar to regular files.
//
//
// Filesystem organization
...
...
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