aboutsummaryrefslogtreecommitdiffstats
path: root/os/fs
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-04 12:45:42 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-04 12:45:42 +0000
commit2fa014a7be21c7d893fbbb2101c97c51971321b9 (patch)
tree21a50edbadee3aad1d93f508f9034c1bffebe8d1 /os/fs
parent77f68f1c5b8f39a9146f5bd644867dde10b24c14 (diff)
downloadChibiOS-2fa014a7be21c7d893fbbb2101c97c51971321b9.tar.gz
ChibiOS-2fa014a7be21c7d893fbbb2101c97c51971321b9.tar.bz2
ChibiOS-2fa014a7be21c7d893fbbb2101c97c51971321b9.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5031 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/fs')
-rw-r--r--os/fs/fatfs/fatfs_fsimpl.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/os/fs/fatfs/fatfs_fsimpl.cpp b/os/fs/fatfs/fatfs_fsimpl.cpp
index 4fd071f00..e63f71323 100644
--- a/os/fs/fatfs/fatfs_fsimpl.cpp
+++ b/os/fs/fatfs/fatfs_fsimpl.cpp
@@ -49,19 +49,13 @@ namespace chibios_fatfs {
*------------------------------------------------------------------------*/
FatFSWrapper::FatFSServerThread::FatFSServerThread(void) :
BaseStaticThread<FATFS_THREAD_STACK_SIZE>() {
-
- start(FATFS_THREAD_PRIORITY);
}
-/* FatFSWrapper::FatFSServerThread::~FatFSServerThread() {
-
- sendMessage(MSG_TERMINATE);
- wait();
- }*/
-
msg_t FatFSWrapper::FatFSServerThread::main() {
msg_t sts;
+ setName("fatfs");
+
/* Synchronous messages processing loop.*/
while (true) {
ThreadReference tr = waitMessage();