Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F2785810
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Authored By
mjoras
Oct 4 2017, 3:18 PM
2017-10-04 15:18:33 (UTC+0)
Size
466 B
Referenced Files
None
Subscribers
None
View Options
/* TailQ Deletion. */
while (!TAILQ_EMPTY(&head)) {
n1 = TAILQ_FIRST(&head);
TAILQ_REMOVE(&head, n1, entries);
free(n1);
}
/* Faster TailQ Deletion. */
n1 = TAILQ_FIRST(&head);
while (n1 != NULL) {
n2 = TAILQ_NEXT(n1, entries);
free(n1);
n1 = n2;
}
TAILQ_INIT(&head);
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1132570
Default Alt Text
(466 B)
Attached To
Mode
P145 (An Untitled Masterwork)
Attached
Detach File
Event Timeline
Log In to Comment