1: # include   "../ingres.h"
   2: 
   3: /*
   4: **  RUBOUT SETUP FOR DEFFERED UPDATE PROCESSOR
   5: **
   6: **	These routines setup the special processing for the rubout
   7: **	signal for the deferred update processor.  The update
   8: **	processor is then called.
   9: */
  10: 
  11: rupdate(pc, pv)
  12: int pc;
  13: char    **pv;
  14: {
  15:     register int    rtval;
  16: 
  17:     /* set up special signal processing */
  18:     ruboff("batch update");
  19: 
  20:     /* call update */
  21:     rtval = update(pc, pv);
  22: 
  23:     /* clean up signals */
  24:     rubon();
  25: 
  26:     return (rtval);
  27: }

Defined functions

rupdate defined in line 11; used 4 times
Last modified: 1980-12-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1654
Valid CSS Valid XHTML 1.0 Strict