Home | History | Annotate | Line # | Download | only in common
      1 PREFIX	vi
      2 
      3 INCLUDE #include <sys/types.h>
      4 INCLUDE #include <sys/queue.h>
      5 INCLUDE #include <sys/stat.h>
      6 INCLUDE #include <bitstring.h>
      7 INCLUDE #include <errno.h>
      8 INCLUDE #include <fcntl.h>
      9 INCLUDE #include <limits.h>
     10 INCLUDE #include <stdio.h>
     11 INCLUDE #include <stdlib.h>
     12 INCLUDE #include <string.h>
     13 INCLUDE #include "common.h"
     14 INCLUDE #include <db_int.h>
     15 INCLUDE #include "db_page.h"
     16 INCLUDE #include "db_am.h"
     17 INCLUDE #include "rep.h"
     18 INCLUDE #include "txn.h"
     19 
     20 BEGIN	marker		200
     21 ARG	opcode		u_int32_t	lu
     22 END
     23 
     24 BEGIN	cursor		201
     25 ARG	opcode		u_int32_t	lu
     26 ARG	lno		db_recno_t	lu
     27 ARG	cno		size_t		d
     28 END
     29 
     30 BEGIN	mark		202
     31 POINTER	lmp		LMARK *		%
     32 END
     33 
     34 BEGIN	change		203
     35 ARG	opcode		u_int32_t	lu
     36 ARG	lno		db_recno_t	lu
     37 END
     38