summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_alarm.erl2
-rw-r--r--src/rabbit_memsup_linux.erl (renamed from src/rabbit_linux_memory.erl)2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_alarm.erl b/src/rabbit_alarm.erl
index 5cc1e75caa..5a19aca081 100644
--- a/src/rabbit_alarm.erl
+++ b/src/rabbit_alarm.erl
@@ -61,7 +61,7 @@ start() ->
%% without any pressure existing on memory at all.
%% Therefore we need to use our own simple memory
%% monitor
- {ok, _} = start_memsup(rabbit_linux_memory);
+ {ok, _} = start_memsup(rabbit_memsup_linux);
_ ->
%% Start memsup programmatically rather than via
%% the rabbitmq-server script. This is not quite
diff --git a/src/rabbit_linux_memory.erl b/src/rabbit_memsup_linux.erl
index 27ca0448af..c9ff1c91ee 100644
--- a/src/rabbit_linux_memory.erl
+++ b/src/rabbit_memsup_linux.erl
@@ -23,7 +23,7 @@
%% Contributor(s): ______________________________________.
%%
--module(rabbit_linux_memory).
+-module(rabbit_memsup_linux).
-behaviour(gen_server).