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

« back to all changes in this revision

Viewing changes to lib/cosProperty/src/cosProperty.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:
339
339
start_PropertiesIterator(Args) ->
340
340
    Name = create_name(propertiesIterator),
341
341
    case supervisor:start_child(?SUPERVISOR_NAME, ?SUP_PROP_SPEC(Name, Args)) of
342
 
        {ok, Pid, Obj} when pid(Pid) ->
 
342
        {ok, Pid, Obj} when is_pid(Pid) ->
343
343
            Obj;
344
344
        _Other->
345
345
            corba:raise(#'INTERNAL'{completion_status=?COMPLETED_NO})
355
355
start_PropertyNamesIterator(Args) ->
356
356
    Name = create_name(propertiesIterator),
357
357
    case supervisor:start_child(?SUPERVISOR_NAME, ?SUP_NAMES_SPEC(Name, Args)) of
358
 
        {ok, Pid, Obj} when pid(Pid) ->
 
358
        {ok, Pid, Obj} when is_pid(Pid) ->
359
359
            Obj;
360
360
        _Other->
361
361
            corba:raise(#'INTERNAL'{completion_status=?COMPLETED_NO})