diff options
author | Kostis Sagonas <[email protected]> | 2010-09-24 15:34:15 +0300 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2010-09-24 15:34:15 +0300 |
commit | 4d60cb7e0855ee1929ac719f7e525e8fedf79562 (patch) | |
tree | 757f7dea65d8e985d10b6f97613cbf7649407b9e /lib/stdlib/src/timer.erl | |
parent | dd51118499209bbd91c0092d9778897026bde4c6 (diff) | |
download | otp-4d60cb7e0855ee1929ac719f7e525e8fedf79562.tar.gz otp-4d60cb7e0855ee1929ac719f7e525e8fedf79562.tar.bz2 otp-4d60cb7e0855ee1929ac719f7e525e8fedf79562.zip |
Export opaque types so as to be used by other modules
Diffstat (limited to 'lib/stdlib/src/timer.erl')
-rw-r--r-- | lib/stdlib/src/timer.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/stdlib/src/timer.erl b/lib/stdlib/src/timer.erl index 24e14caa69..b456c5d6c1 100644 --- a/lib/stdlib/src/timer.erl +++ b/lib/stdlib/src/timer.erl @@ -33,6 +33,9 @@ %% internal exports for test purposes only -export([get_status/0]). +%% types which can be used by other modules +-export_type([tref/0]). + %% Max -define(MAX_TIMEOUT, 16#0800000). -define(TIMER_TAB, timer_tab). |