Module Name: src Committed By: pooka Date: Wed Apr 28 14:23:58 UTC 2010
Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: Set l_sysent so that syscall autoload actually works instead of autocores. To generate a diff of this commit: cvs rdiff -u -r1.167 -r1.168 src/sys/rump/librump/rumpkern/rump.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/librump/rumpkern/rump.c diff -u src/sys/rump/librump/rumpkern/rump.c:1.167 src/sys/rump/librump/rumpkern/rump.c:1.168 --- src/sys/rump/librump/rumpkern/rump.c:1.167 Wed Apr 28 11:34:18 2010 +++ src/sys/rump/librump/rumpkern/rump.c Wed Apr 28 14:23:57 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.167 2010/04/28 11:34:18 pooka Exp $ */ +/* $NetBSD: rump.c,v 1.168 2010/04/28 14:23:57 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -28,7 +28,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.167 2010/04/28 11:34:18 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.168 2010/04/28 14:23:57 pooka Exp $"); #include <sys/systm.h> #define ELFSIZE ARCH_ELFSIZE @@ -531,6 +531,7 @@ l->l_lid = lid; l->l_fd = p->p_fd; l->l_cpu = NULL; + l->l_sysent = rump_sysent; lwp_initspecific(l); LIST_INSERT_HEAD(&alllwp, l, l_list);