aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-02-14 15:29:43 +0100
committerLukas Larsson <[email protected]>2014-02-24 15:16:07 +0100
commitff77d5049cca221e82d1b28e862512069c399eb7 (patch)
treea247f683df0425282787c9f59963a19880f60c41
parenta35d0f5f82f8152f1b953eda039807a7d4f4e9b9 (diff)
downloadotp-ff77d5049cca221e82d1b28e862512069c399eb7.tar.gz
otp-ff77d5049cca221e82d1b28e862512069c399eb7.tar.bz2
otp-ff77d5049cca221e82d1b28e862512069c399eb7.zip
ose: Fix broken doc links
-rw-r--r--erts/doc/src/driver_entry.xml2
-rw-r--r--lib/ose/doc/src/ose_erl_driver.xml2
-rw-r--r--lib/ose/doc/src/ose_signals_chapter.xml2
-rw-r--r--lib/ose/src/ose.erl2
4 files changed, 4 insertions, 4 deletions
diff --git a/erts/doc/src/driver_entry.xml b/erts/doc/src/driver_entry.xml
index 469b59dba6..b34ca136f3 100644
--- a/erts/doc/src/driver_entry.xml
+++ b/erts/doc/src/driver_entry.xml
@@ -246,7 +246,7 @@ typedef struct erl_drv_entry {
function understands). (Some trickery in the emulator allows
more than the built-in limit of 64 <c>Events</c> to be used.)</p>
<p>On Enea OSE the <c>event</c> is one or more signals that can
- be retrieved using <seealso marker="ose:ose_erl_driver#erl_drv_ose_get_input_signal">erl_drv_ose_get_input_signal</seealso>.</p>
+ be retrieved using <seealso marker="ose:ose_erl_driver#erl_drv_ose_get_signal">erl_drv_ose_get_signal</seealso>.</p>
<p>To use this with threads and asynchronous routines, create a
pipe on unix, an Event on Windows or a unique signal number on
Enea OSE. When the routine
diff --git a/lib/ose/doc/src/ose_erl_driver.xml b/lib/ose/doc/src/ose_erl_driver.xml
index 6687d78087..93cbd91be7 100644
--- a/lib/ose/doc/src/ose_erl_driver.xml
+++ b/lib/ose/doc/src/ose_erl_driver.xml
@@ -74,7 +74,7 @@
<p>Create a new <c>ErlDrvEvent</c> associated with <c>signo</c>,
<c>id</c> and uses the <c>resolve_signal</c> function to extract
the <c>id</c> from a signal with <c>signo</c>. See
- <seealso marker="ose_erl_driver_chapter#driver">
+ <seealso marker="ose_signals_chapter#driver">
Signals in a Linked-in driver</seealso> in the OSE User's Guide.
</p>
</desc>
diff --git a/lib/ose/doc/src/ose_signals_chapter.xml b/lib/ose/doc/src/ose_signals_chapter.xml
index 2a6ddb5765..85849e1a39 100644
--- a/lib/ose/doc/src/ose_signals_chapter.xml
+++ b/lib/ose/doc/src/ose_signals_chapter.xml
@@ -79,7 +79,7 @@
used. The third argument is a function pointer to a function that can
be used to figure out the id from a given signal. There is a complete
example of what this could look like in
- <seealso marker="example">the next section</seealso>.
+ <seealso marker="#example">the next section</seealso>.
<note>It is very important to issue the driver_select call before
any of the signals you are interested in are sent. If driver_select
is called after the signal is sent, there is a high probability that it
diff --git a/lib/ose/src/ose.erl b/lib/ose/src/ose.erl
index ff7147233f..77f11addf9 100644
--- a/lib/ose/src/ose.erl
+++ b/lib/ose/src/ose.erl
@@ -108,7 +108,7 @@
%%
%% raises: `badarg' | `system_limit'
%%
-%% @see liten/2
+%% @see listen/2
%% @end
%%------------------------------------------------------------------------------
-spec open(Name) -> Port when