~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/cosTime/src/CosTime_TimeService_impl.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
%% Effect   : Functions demanded by the gen_server module. 
63
63
%%------------------------------------------------------------
64
64
 
65
 
code_change(OldVsn, State, Extra) ->
 
65
code_change(_OldVsn, State, _Extra) ->
66
66
    {ok, State}.
67
67
 
68
 
handle_info(Info, State) ->
69
 
    ?debug_print("INFO: ~p~n", [Info]),
 
68
handle_info(_Info, State) ->
 
69
    ?debug_print("INFO: ~p~n", [_Info]),
70
70
    {noreply, State}.    
71
71
 
72
72
%%----------------------------------------------------------%
78
78
    process_flag(trap_exit, true),
79
79
    {ok, ?get_InitState(Tdf, Inaccuracy)}.
80
80
 
81
 
terminate(Reason, State) ->
 
81
terminate(_Reason, _State) ->
82
82
    ok.
83
83
 
84
84
%%-----------------------------------------------------------
105
105
%% Arguments: 
106
106
%% Returns  : {'EXCEPTION", #'CosTime_TimeUnavailable'{}}
107
107
%%-----------------------------------------------------------
108
 
secure_universal_time(OE_THIS, State) ->
 
108
secure_universal_time(_OE_THIS, _State) ->
109
109
    corba:raise(#'CosTime_TimeUnavailable'{}).
110
110
 
111
111
%%----------------------------------------------------------%