Move fsmarshall.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-24 23:24:18 +02:00
parent 9c4f25ae7c
commit ab0177113f
9 changed files with 16 additions and 16 deletions

View File

@ -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 \

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/

View File

@ -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.
*******************************************************************************/