svn commit: r228638 - head/sys/sys

Andriy Gapon avg at FreeBSD.org
Sat Dec 17 15:39:15 UTC 2011


Author: avg
Date: Sat Dec 17 15:39:14 2011
New Revision: 228638
URL: http://svn.freebsd.org/changeset/base/228638

Log:
  move GETS_*ECHO* defintions from libkern.h to cons.h
  
  MFC after:	2 months

Modified:
  head/sys/sys/cons.h
  head/sys/sys/libkern.h

Modified: head/sys/sys/cons.h
==============================================================================
--- head/sys/sys/cons.h	Sat Dec 17 15:38:16 2011	(r228637)
+++ head/sys/sys/cons.h	Sat Dec 17 15:39:14 2011	(r228638)
@@ -86,6 +86,11 @@ struct consdev {
 #define	CN_FLAG_NODEBUG	0x00000001	/* Not supported with debugger. */
 #define	CN_FLAG_NOAVAIL	0x00000002	/* Temporarily not available. */
 
+/* Visibility of characters in cngets() */
+#define	GETS_NOECHO	0	/* Disable echoing of characters. */
+#define	GETS_ECHO	1	/* Enable echoing of characters. */
+#define	GETS_ECHOPASS	2	/* Print a * for every character. */
+
 #ifdef _KERNEL
 
 extern	struct msgbuf consmsgbuf; /* Message buffer for constty. */

Modified: head/sys/sys/libkern.h
==============================================================================
--- head/sys/sys/libkern.h	Sat Dec 17 15:38:16 2011	(r228637)
+++ head/sys/sys/libkern.h	Sat Dec 17 15:39:14 2011	(r228638)
@@ -188,9 +188,4 @@ strrchr(const char *p, int ch)
 #define	FNM_IGNORECASE	FNM_CASEFOLD
 #define	FNM_FILE_NAME	FNM_PATHNAME
 
-/* Visibility of characters in gets() */
-#define	GETS_NOECHO	0	/* Disable echoing of characters. */
-#define	GETS_ECHO	1	/* Enable echoing of characters. */
-#define	GETS_ECHOPASS	2	/* Print a * for every character. */
-
 #endif /* !_SYS_LIBKERN_H_ */


More information about the svn-src-head mailing list