Commit daa84c7f authored by unknown's avatar unknown
Browse files

ndb - 5.1.2 build fix: Signal syms in test pgms on hp3750


storage/ndb/src/kernel/blocks/dbtup/test_varpage.cpp:
  add some Signal syms to test programs for hp3750, hope it dont break other platforms..
storage/ndb/src/kernel/blocks/print_file.cpp:
  add some Signal syms to test programs for hp3750, hope it dont break other platforms..
parent f24078f7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -123,3 +123,7 @@ main(void)
}

template class Vector<Record>;

// hp3750
struct Signal { Signal(); int foo; };
Signal::Signal(){}
+3 −0
Original line number Diff line number Diff line
@@ -368,3 +368,6 @@ print_undo_page(int count, void* ptr, Uint32 sz){

  return 0;
}

// hp3750
Signal::Signal(){}