repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
add-ons
/
kernel
/
file_systems
/
bindfs
/
Node.cpp
blob
26534e587ca7e22969d4cc7681fbe0b7db602931
1
/*
2
* Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3
* Distributed under the terms of the MIT License.
4
*/
5
6
7
#include
"Node.h"
8
9
10
Node
::
Node
(
ino_t id
,
mode_t mode
)
11
:
12
fSourceID
(
id
),
13
fMode
(
mode
)
14
{
15
}
16
17
18
Node
::~
Node
()
19
{
20
}