From d318717866ffa267781ab482e99a05415e2ac0e4 Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Thu, 4 Mar 2010 03:10:19 +0000 Subject: reverting damien's latest commit until we can figure out why it's causing failures git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@918834 13f79535-47bb-0310-9956-ffa450edef68 --- src/couchdb/couch_native_process.erl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/couchdb/couch_native_process.erl') diff --git a/src/couchdb/couch_native_process.erl b/src/couchdb/couch_native_process.erl index a9869b29..5600c421 100644 --- a/src/couchdb/couch_native_process.erl +++ b/src/couchdb/couch_native_process.erl @@ -94,10 +94,8 @@ handle_call({prompt, Data}, _From, State) -> {reply, Resp, NewState} end. -handle_cast(foo, State) -> {noreply, State}. -handle_info({'EXIT',_,normal}, State) -> {noreply, State}; -handle_info({'EXIT',_,Reason}, State) -> - {stop, Reason, State}. +handle_cast(_Msg, State) -> {noreply, State}. +handle_info(_Msg, State) -> {noreply, State}. terminate(_Reason, _State) -> ok. code_change(_OldVersion, State, _Extra) -> {ok, State}. -- cgit v1.2.3