diff options
author | Bruce Evans <bde@FreeBSD.org> | 2004-03-05 14:31:21 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 2004-03-05 14:31:21 +0000 |
commit | 39dca09cccfb4076a8c1208bc273c00a47f72b77 (patch) | |
tree | 0acf51ee3b97d13af49472eeb0ba3bd8a900fbf7 /sys | |
parent | e8829b611564a92764fad160b27e4afdce7dbd6a (diff) | |
download | src-39dca09cccfb4076a8c1208bc273c00a47f72b77.tar.gz src-39dca09cccfb4076a8c1208bc273c00a47f72b77.zip |
MFi386: (all: keep a comment in sync with code, and don't depend on
namespace pollution).
Notes
Notes:
svn path=/head/; revision=126654
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/critical.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/amd64/amd64/critical.c b/sys/amd64/amd64/critical.c index 063c7a30437f..925a91ca2865 100644 --- a/sys/amd64/amd64/critical.c +++ b/sys/amd64/amd64/critical.c @@ -31,10 +31,14 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/systm.h> #include <sys/proc.h> + #include <machine/critical.h> +#include <machine/psl.h> /* * cpu_critical_fork_exit() - cleanup after fork + * + * Enable interrupts in the saved copy of eflags. */ void cpu_critical_fork_exit(void) |