ed 3779b68747 Rename the queue macros I introduced last year.
Last year I added SLIST_REMOVE_NEXT and STAILQ_REMOVE_NEXT, to remove
entries behind an element in the list, using O(1) time. I recently
discovered NetBSD also has a similar macro, called SLIST_REMOVE_AFTER.
In my opinion this approach is a lot better:

- It doesn't have the unused first argument of the list pointer. I added
  this, mainly because OpenBSD also had it.

- The _AFTER suffix makes a lot more sense, because it is related to
  SLIST_INSERT_AFTER. _NEXT is only used to iterate through the list.

The reason why I want to rename this now, is to make sure we don't
release a major version with the badly named macros.
2009-05-27 19:28:04 +00:00
..
2009-05-25 23:06:46 +00:00
2009-04-05 22:08:18 +00:00
2008-01-23 04:25:10 +00:00
2008-02-01 20:15:21 +00:00
2009-05-25 17:06:24 +00:00
2009-05-27 10:02:07 +00:00
2008-10-08 13:20:02 +00:00