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