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

« back to all changes in this revision

Viewing changes to lib/orber/src/cdr_decode.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:
1130
1130
get_ifr_node(Nodes, N, L) ->
1131
1131
    Node = lists:nth(N, Nodes),
1132
1132
    case catch corba:resolve_initial_references_remote("OrberIFR", [Node]) of
1133
 
        IFR when record(IFR, 'IOP_IOR') ->
 
1133
        IFR when is_record(IFR, 'IOP_IOR') ->
1134
1134
            IFR;
1135
1135
        _ ->
1136
1136
            %% Not able to commincate with the node. Try next one.
1210
1210
                false ->
1211
1211
                    case mnesia:dirty_index_read(ir_ExceptionDef, TypeId,
1212
1212
                                                 #ir_ExceptionDef.id) of
1213
 
                        [ExcDef] when record(ExcDef, ir_ExceptionDef) ->  
 
1213
                        [ExcDef] when is_record(ExcDef, ir_ExceptionDef) ->  
1214
1214
                            ExcDef#ir_ExceptionDef.type;
1215
1215
                        Other ->
1216
1216
                            orber:dbg("[~p] cdr_decode:get_user_exception_type(~p). IFR Id not found: ~p",