tftp: Use proper semaphore attr for mutex

Close #2729.
This commit is contained in:
Sebastian Huber
2016-06-06 12:57:07 +02:00
parent c75aa864cf
commit a2f91f6cb8
+2 -4
View File
@@ -216,11 +216,9 @@ int rtems_tftpfs_initialize(
sc = rtems_semaphore_create (
rtems_build_name('T', 'F', 'T', 'P'),
1,
RTEMS_FIFO |
RTEMS_BINARY_SEMAPHORE |
RTEMS_NO_INHERIT_PRIORITY |
RTEMS_NO_PRIORITY_CEILING |
RTEMS_LOCAL,
RTEMS_PRIORITY |
RTEMS_INHERIT_PRIORITY,
0,
&fs->tftp_mutex
);