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

« back to all changes in this revision

Viewing changes to lib/tv/src/tv_mnesia_rpc.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        {'EXIT', {aborted, {no_exists, _Table, _Arg}}} ->
78
78
            throw(no_table);
79
79
        
80
 
        {'EXIT', {aborted, {node_not_running, Node}}} ->
 
80
        {'EXIT', {aborted, {node_not_running, _Node}}} ->
81
81
            throw(mnesia_not_started);
82
82
        {'EXIT', {{badarg, {gen, set_monitor_mode, _Data}}, _Info}} ->
83
83
            throw(mnesia_not_started);
84
 
        {'EXIT', {'EXIT', {aborted, {node_not_running,Node}}}} ->
85
 
            throw(mnesia_not_started);
86
 
        {badrpc, {'EXIT', {aborted, {node_not_running,Node}}}} ->
87
 
            throw(mnesia_not_started);
88
 
        {badrpc, {'EXIT', {aborted, {no_exists,Table,Args}}}} ->
89
 
            throw(mnesia_not_started);
90
 
        {badrpc, Reason} ->
91
 
            throw(mnesia_not_started);
92
 
        {'EXIT', {undef, {mnesia,Fcn,Args}}} ->
 
84
        {'EXIT', {'EXIT', {aborted, {node_not_running,_Node}}}} ->
 
85
            throw(mnesia_not_started);
 
86
        {badrpc, {'EXIT', {aborted, {node_not_running,_Node}}}} ->
 
87
            throw(mnesia_not_started);
 
88
        {badrpc, {'EXIT', {aborted, {no_exists,_Table,_Args}}}} ->
 
89
            throw(mnesia_not_started);
 
90
        {badrpc, _Reason} ->
 
91
            throw(mnesia_not_started);
 
92
        {'EXIT', {undef, {mnesia,_Fcn,_Args}}} ->
93
93
            throw(mnesia_not_started);
94
94
        
95
95
        {'EXIT', Reason} ->