mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Work queue: Code style fixes
This commit is contained in:
parent
069ebebb27
commit
1b65bba083
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user