Skip to content
Snippets Groups Projects
Commit 65d43542 authored by Dan Egnor's avatar Dan Egnor
Browse files

typo

parent 8e4726ab
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ void (*cancel_fd)(oop_source *source,int fd,oop_event event); ...@@ -30,7 +30,7 @@ void (*cancel_fd)(oop_source *source,int fd,oop_event event);
<dt><b>oop_source *source</b> <dt><b>oop_source *source</b>
<dd>The event source to register or unregister the event sink with. This must <dd>The event source to register or unregister the event sink with. This must
be the same event source you got the function pointer from: be the same event source you got the function pointer from:
"src->on_fd(src,...);".<p> "src-&gt;on_fd(src,...);".<p>
<dt><b>int fd</b> <dt><b>int fd</b>
<dd>The file descriptor to watch (or stop watching).<p> <dd>The file descriptor to watch (or stop watching).<p>
...@@ -69,7 +69,7 @@ it is not deactivated (see below). Only one callback may be registered per ...@@ -69,7 +69,7 @@ it is not deactivated (see below). Only one callback may be registered per
<dt><b>cancel_fd</b> <dt><b>cancel_fd</b>
<dd>Deactivate an event sink callback registered using on_fd (above). <dd>Deactivate an event sink callback registered using on_fd (above).
Any callback associated with the (event,fd) pair in question is revmoed.<p> Any callback associated with the (event,fd) pair in question is removed.<p>
<dt><b>oop_call_fd</b> <dt><b>oop_call_fd</b>
<dd>Called when the event is triggered. Performs a user_specific action. <dd>Called when the event is triggered. Performs a user_specific action.
......
...@@ -24,7 +24,7 @@ void (*cancel_signal)(oop_source *source,int sig,oop_call_signal *call,void *use ...@@ -24,7 +24,7 @@ void (*cancel_signal)(oop_source *source,int sig,oop_call_signal *call,void *use
<dt><b>oop_source *source</b> <dt><b>oop_source *source</b>
<dd>The event source to register or unregister the event sink with. This must <dd>The event source to register or unregister the event sink with. This must
be the same event source you got the function pointer from: be the same event source you got the function pointer from:
"src->on_signal(src,...);".<p> "src-&gt;on_signal(src,...);".<p>
<dt><b>int sig</b> <dt><b>int sig</b>
<dd>The UNIX signal to monitor (SIGINT, SIGHUP, etc.).<p> <dd>The UNIX signal to monitor (SIGINT, SIGHUP, etc.).<p>
......
...@@ -27,7 +27,7 @@ void (*cancel_time)(oop_source *source,struct timeval tv,oop_call_time *call,voi ...@@ -27,7 +27,7 @@ void (*cancel_time)(oop_source *source,struct timeval tv,oop_call_time *call,voi
<dt><b>oop_source *source</b> <dt><b>oop_source *source</b>
<dd>The event source to register or unregister the event sink with. This must <dd>The event source to register or unregister the event sink with. This must
be the same event source you got the function pointer from: be the same event source you got the function pointer from:
"src->on_time(src,...);".<p> "src-&gt;on_time(src,...);".<p>
<dt><b>struct timeval tv</b> <dt><b>struct timeval tv</b>
<dd>The time to wait for. OOP_TIME_NOW (or any time in the past) will cause <dd>The time to wait for. OOP_TIME_NOW (or any time in the past) will cause
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment