mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-08 19:31:14 -03:00
Remove trailing whitespaces and change tabs to spaces
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
/**
|
||||
Runs a command on a thread.
|
||||
|
||||
|
||||
\param handler The function to execute on a background thread. Accepts an arbitrary context pointer, and returns an int, which is passed to the completionCallback.
|
||||
\param completionCallback The function to execute on the main thread once the background thread is complete. Accepts an int (the return value of handler) and the context.
|
||||
\param context A arbitary context pointer to pass to the handler and completion callback.
|
||||
@@ -15,9 +15,9 @@
|
||||
*/
|
||||
int iothread_perform_base(int (*handler)(void *), void (*completionCallback)(void *, int), void *context);
|
||||
|
||||
/**
|
||||
/**
|
||||
Gets the fd on which to listen for completion callbacks.
|
||||
|
||||
|
||||
\return A file descriptor on which to listen for completion callbacks.
|
||||
*/
|
||||
int iothread_port(void);
|
||||
|
||||
Reference in New Issue
Block a user