mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Move fsmarshall.h functions into their own directory.
This commit is contained in:
parent
9c4f25ae7c
commit
ab0177113f
9 changed files with 16 additions and 16 deletions
|
@ -219,14 +219,14 @@ fork.o \
|
|||
fpipe.o \
|
||||
freopen.o \
|
||||
fsetpos.o \
|
||||
fsm_bootstraprootfd.o \
|
||||
fsm_closechannel.o \
|
||||
fsm_closeserver.o \
|
||||
fsm_fsbind.o \
|
||||
fsm_listen.o \
|
||||
fsm_mkserver.o \
|
||||
fsm_recv.o \
|
||||
fsm_send.o \
|
||||
fsmarshall/fsm_bootstraprootfd.o \
|
||||
fsmarshall/fsm_closechannel.o \
|
||||
fsmarshall/fsm_closeserver.o \
|
||||
fsmarshall/fsm_fsbind.o \
|
||||
fsmarshall/fsm_listen.o \
|
||||
fsmarshall/fsm_mkserver.o \
|
||||
fsmarshall/fsm_recv.o \
|
||||
fsmarshall/fsm_send.o \
|
||||
fstatat.o \
|
||||
fstat.o \
|
||||
fsync.o \
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_bootstraprootfd.cpp
|
||||
fsmarshall/fsm_bootstraprootfd.cpp
|
||||
Creates a root file descriptor associated with a user-space filesystem.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_closechannel.cpp
|
||||
fsmarshall/fsm_closechannel.cpp
|
||||
Closes a user-space filesystem communication channel.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_closeserver.cpp
|
||||
fsmarshall/fsm_closeserver.cpp
|
||||
Destroys a user-space filesystem server.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_fsbind.cpp
|
||||
fsmarshall/fsm_fsbind.cpp
|
||||
Binds a user-space filesystem inode at a mount point.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_listen.cpp
|
||||
fsmarshall/fsm_listen.cpp
|
||||
Listens for a new channel on a given filesystem server.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_mkserver.cpp
|
||||
fsmarshall/fsm_mkserver.cpp
|
||||
Creates a user-space filesystem server.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_recv.cpp
|
||||
fsmarshall/fsm_recv.cpp
|
||||
Reads a message from a filesystem communication channel.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fsm_send.cpp
|
||||
fsmarshall/fsm_send.cpp
|
||||
Send a message to a filesystem communication channel.
|
||||
|
||||
*******************************************************************************/
|
Loading…
Reference in a new issue