svn commit: r205244 - user/lstewart/alq_varlen_head/sys/sys

Lawrence Stewart lstewart at FreeBSD.org
Wed Mar 17 07:16:28 UTC 2010


Author: lstewart
Date: Wed Mar 17 07:16:27 2010
New Revision: 205244
URL: http://svn.freebsd.org/changeset/base/205244

Log:
  Catch up with code changes.
  
  Sponsored by:	FreeBSD Foundation

Modified:
  user/lstewart/alq_varlen_head/sys/sys/alq.h

Modified: user/lstewart/alq_varlen_head/sys/sys/alq.h
==============================================================================
--- user/lstewart/alq_varlen_head/sys/sys/alq.h	Wed Mar 17 07:08:57 2010	(r205243)
+++ user/lstewart/alq_varlen_head/sys/sys/alq.h	Wed Mar 17 07:16:27 2010	(r205244)
@@ -62,7 +62,7 @@ struct ale {
 #define	ALQ_DEFAULT_CMODE	0600
 
 /*
- * alq_open:  Creates a new queue
+ * alq_open_flags:  Creates a new queue
  *
  * Arguments:
  *	alq	Storage for a pointer to the newly created queue.
@@ -74,6 +74,7 @@ struct ale {
  *	count	The number of items in the buffer, this should be large enough
  *		to store items over the period of a disk write. For variable
  *		length queues, this should be set to 0.
+ *	flags	ALQ_ORDERED
  * Returns:
  *	error from open or 0 on success
  */
@@ -136,7 +137,7 @@ struct ale *alq_getn(struct alq *alq, in
 struct ale *alq_get(struct alq *alq, int flags);
 
 /*
- * alq_postn:  Schedule the ale retrieved by alq_get/alq_getn for writing.
+ * alq_post_flags:  Schedule the ale retrieved by alq_get/alq_getn for writing.
  *	alq	The queue to post the entry to.
  *	ale	An asynch logging entry returned by alq_get.
  *	flags	ALQ_NOACTIVATE


More information about the svn-src-user mailing list