/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 1999 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "ghd_queue.h"
void
{
/* init the list element */
/* list is empty */
} else {
/* add it to the tailend */
}
}
/*
* L1Delete()
*
* Remove a specific entry from a singly-linked list.
*
*/
void
{
/* it's the first entry in the list */
/* the list is now empty */
}
return;
}
return;
}
}
/* its not on this list */
}
/*
* L1_remove()
*
* Remove the entry at the head of the list (if any).
*
*/
void *
{
/* pop the first one off the list head */
return (NULL);
}
/* if the list is now empty fix the tail pointer */
}
void
{
}
void
{
/* link it to itself in case someone does a double delete */
}
void
{
}
/*
* L2_remove()
*
* Remove the entry from the head of the list (if any).
*
*/
void *
{
return (NULL);
/* link it to itself in case someone does a double delete */
return (elementp->l2_private);
}
void *
{
return (NULL);
}