Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
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
Kirill Smelkov
jacobsa-fuse
Commits
978399a2
Commit
978399a2
authored
Aug 04, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
errorFS.SetError
parent
8aecb355
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
samples/errorfs/error_fs.go
samples/errorfs/error_fs.go
+24
-2
No files found.
samples/errorfs/error_fs.go
View file @
978399a2
...
...
@@ -15,8 +15,8 @@
package
errorfs
import
(
"errors"
"reflect"
"sync"
"syscall"
"github.com/jacobsa/fuse/fuseutil"
...
...
@@ -38,6 +38,28 @@ type FS interface {
}
func
New
()
(
fs
FS
,
err
error
)
{
err
=
errors
.
New
(
"TODO"
)
fs
=
&
errorFS
{
errors
:
make
(
map
[
string
]
syscall
.
Errno
),
}
return
}
type
errorFS
struct
{
fuseutil
.
NotImplementedFileSystem
mu
sync
.
Mutex
// Keys are reflect.Type.Name strings.
//
// GUARDED_BY(mu)
errors
map
[
string
]
syscall
.
Errno
}
// LOCKS_EXCLUDED(fs.mu)
func
(
fs
*
errorFS
)
SetError
(
t
reflect
.
Type
,
err
syscall
.
Errno
)
{
fs
.
mu
.
Lock
()
defer
fs
.
mu
.
Unlock
()
fs
.
errors
[
t
.
Name
()]
=
err
}
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