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

« back to all changes in this revision

Viewing changes to lib/orber/src/orber_ifr.erl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-08-05 20:54:29 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090805205429-pm4pnwew8axraosl
Tags: 1:13.b.1-dfsg-5
* Fixed parentheses in Emacs mode (closes: #536891).
* Removed unnecessary conflicts with erlang-manpages package.
* Added workaround for #475459: disabled threads on sparc architecture.
  This breaks wxErlang, so it's only a temporary solution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
694
694
%%=================== End Light IFR operations =========================
695
695
 
696
696
%% Initialize the database
697
 
init(Nodes, Timeout) when atom(Timeout) ; integer(Timeout) ->
 
697
init(Nodes, Timeout) when is_atom(Timeout) orelse is_integer(Timeout) ->
698
698
    orber_ifr_utils:init_DB(Timeout, [{disc_copies, Nodes}]);
699
699
init(Timeout, Nodes) ->
700
700
    orber_ifr_utils:init_DB(Timeout, [{disc_copies, Nodes}]).