Browse Source

delete of monitor marker in delete_globals() fixed

Ulf Wiger 15 years ago
parent
commit
a11326f203
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/gproc_dist.erl

+ 1 - 1
src/gproc_dist.erl

@@ -352,7 +352,7 @@ delete_globals(Globals) ->
 	      ets:delete(?TAB, {Pid, Key}),
 		  case node(Pid) =:= node() of
 			  true ->
-				  ets:delete(?TAB, Pid);
+				  ets:delete(?TAB, {Pid,g});
 			  _ -> ok
 		  end
       end, Globals).