Code

utils channel: Changed abstime argument to a timeout.
[sysdb.git] / src / include / utils / channel.h
index ca450ce22282dc2af98b7889f7fc15189a544b86..e1b3f0e63e695f83b4ebf5d64671bf181920ff2f 100644 (file)
@@ -101,9 +101,8 @@ sdb_channel_read(sdb_channel_t *chan, void *data);
  * to the channel. If non-NULL, the value pointed to by the 'want...'
  * arguments will be "true" iff the respective operation is ready. If the
  * '..._data' arguments are non-NULL, the respective operation is executed
- * atomically once the channel is ready for it. If 'abstime' is specified, the
- * operation will time out with an error if the specified absolute time has
- * passed.
+ * atomically once the channel is ready for it. If 'timeout' is specified, the
+ * operation will time out with an error after the specified time has passed.
  */
 int
 sdb_channel_select(sdb_channel_t *chan, int *wantread, void *read_data,