From ff0432665a0dc30bec1aa09d92ecfe2ac4d25f4d Mon Sep 17 00:00:00 2001 From: imp Date: Fri, 24 Oct 2003 22:02:29 +0000 Subject: Parse the ! lines that will soon be coming from the kernel. These are a generalized notification mechanism for subsystems wishing to report events. Revieded by: njl # The kernel side seems like it might be causing panics for me, but should # be forthcoming shortly. --- sbin/devd/token.l | 1 + 1 file changed, 1 insertion(+) (limited to 'sbin/devd/token.l') diff --git a/sbin/devd/token.l b/sbin/devd/token.l index 03a5a72..0aa8cb6 100644 --- a/sbin/devd/token.l +++ b/sbin/devd/token.l @@ -93,6 +93,7 @@ device-name { return DEVICE_NAME; } action { return ACTION; } match { return MATCH; } nomatch { return NOMATCH; } +notify { return NOTIFY; } [A-Za-z][A-Za-z0-9_-]* { yylval.str = strdup(yytext); return ID; -- cgit v1.1