freebsd-dev/sys/i386/linux/linux_genassym.c
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00

24 lines
630 B
C

/* $FreeBSD$ */
#include <stdio.h>
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <i386/linux/linux.h>
extern int main __P((void));
int
main()
{
struct linux_sigframe *linux_sigf = (struct linux_sigframe *)0;
struct linux_sigcontext *linux_sc = (struct linux_sigcontext *)0;
printf("#define\tLINUX_SIGF_HANDLER %d\n", &linux_sigf->sf_handler);
printf("#define\tLINUX_SIGF_SC %d\n", &linux_sigf->sf_sc);
printf("#define\tLINUX_SC_FS %d\n", &linux_sc->sc_fs);
printf("#define\tLINUX_SC_GS %d\n", &linux_sc->sc_gs);
printf("#define\tLINUX_SC_EFLAGS %d\n", &linux_sc->sc_eflags);
return (0);
}