Home | History | Annotate | Line # | Download | only in kern
kern_ksyms_buf.c revision 1.4.16.2
      1 /*	$NetBSD: kern_ksyms_buf.c,v 1.4.16.2 2017/12/03 11:38:44 jdolecek Exp $	*/
      2 
      3 #if defined(_KERNEL_OPT)
      4 #include "opt_copy_symtab.h"
      5 #endif
      6 
      7 #define		SYMTAB_FILLER	"|This is the symbol table!"
      8 
      9 #ifdef makeoptions_COPY_SYMTAB
     10 #ifndef SYMTAB_SPACE
     11 char		db_symtab[] = SYMTAB_FILLER;
     12 #else
     13 char		db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER;
     14 #endif
     15 int		db_symtabsize = sizeof(db_symtab);
     16 #endif
     17