mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-25 16:10:36 +08:00
Work queue: Code style fixes
This commit is contained in:
@@ -121,11 +121,11 @@ static void hrt_work_process()
|
||||
|
||||
int rv;
|
||||
// set the threads name
|
||||
#ifdef __PX4_DARWIN
|
||||
#ifdef __PX4_DARWIN
|
||||
rv = pthread_setname_np("HRT");
|
||||
#else
|
||||
#else
|
||||
rv = pthread_setname_np(pthread_self(), "HRT");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Then process queued work. We need to keep interrupts disabled while
|
||||
* we process items in the work list.
|
||||
|
||||
@@ -308,11 +308,11 @@ int work_usrthread(int argc, char *argv[])
|
||||
|
||||
int rv;
|
||||
// set the threads name
|
||||
#ifdef __PX4_DARWIN
|
||||
#ifdef __PX4_DARWIN
|
||||
rv = pthread_setname_np("USR");
|
||||
#else
|
||||
#else
|
||||
rv = pthread_setname_np(pthread_self(), "USR");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
for (;;) {
|
||||
/* Then process queued work. We need to keep interrupts disabled while
|
||||
|
||||
Reference in New Issue
Block a user