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

« back to all changes in this revision

Viewing changes to lib/kernel/src/kernel_config.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:
23
23
-export([start_link/0]).
24
24
%% Internal exports
25
25
-export([init/1, handle_info/2, terminate/2, send_timeout/2]).
 
26
-export([handle_call/3, handle_cast/2, code_change/3]).
26
27
 
27
28
%%%-----------------------------------------------------------------
28
29
%%% This module implements a process that configures the kernel
63
64
terminate(_Reason, _State) ->
64
65
    ok.
65
66
 
 
67
handle_call('__not_used', _From, State) ->
 
68
    {reply, ok, State}.
 
69
 
 
70
handle_cast('__not_used', State) ->
 
71
    {noreply, State}.
 
72
 
 
73
code_change(_OldVsn, State, _Extra) ->
 
74
    {ok, State}.
 
75
 
66
76
%%-----------------------------------------------------------------
67
77
%% Internal functions
68
78
%%-----------------------------------------------------------------