~ubuntu-branches/ubuntu/lucid/erlang/lucid-proposed

« 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-06-11 12:18:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090611121807-ks7eb4xrt7dsysgx
Tags: 1:13.b.1-dfsg-1
* New upstream release.
* Removed unnecessary dependency of erlang-os-mon on erlang-observer and
  erlang-tools and added missing dependency of erlang-nox on erlang-os-mon
  (closes: #529512).
* Removed a patch to eunit application because the bug was fixed upstream.

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})