Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/solaris/native/sun/awt/list.h
32287 views
/*1* Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/24/** ------------------------------------------------------------------------25This file contains routines for manipulating generic lists.26Lists are implemented with a "harness". In other words, each27node in the list consists of two pointers, one to the data item28and one to the next node in the list. The head of the list is29the same struct as each node, but the "item" ptr is used to point30to the current member of the list (used by the first_in_list and31next_in_list functions).3233This file is available under and governed by the GNU General Public34License version 2 only, as published by the Free Software Foundation.35However, the following notice accompanied the original version of this36file:3738Copyright 1994 Hewlett-Packard Co.39Copyright 1996, 1998 The Open Group4041Permission to use, copy, modify, distribute, and sell this software and its42documentation for any purpose is hereby granted without fee, provided that43the above copyright notice appear in all copies and that both that44copyright notice and this permission notice appear in supporting45documentation.4647The above copyright notice and this permission notice shall be included48in all copies or substantial portions of the Software.4950THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS51OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF52MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.53IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR54OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,55ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR56OTHER DEALINGS IN THE SOFTWARE.5758Except as contained in this notice, the name of The Open Group shall59not be used in advertising or otherwise to promote the sale, use or60other dealings in this Software without prior written authorization61from The Open Group.6263-------------------------------------------------------------------- **/6465#ifndef LIST_DEF66#define LIST_DEF6768#include <X11/Xfuncproto.h>69#define LESS -170#define EQUAL 071#define GREATER 172#define DUP_WHOLE_LIST 073#define START_AT_CURR 17475typedef struct _list_item {76struct _list_item *next;77union {78void *item; /* in normal list node, pts to data */79struct _list_item *curr; /* in list head, pts to curr for 1st, next */80} ptr;81} list, list_item, *list_ptr;8283typedef void (*DESTRUCT_FUNC_PTR)(84void *85);8687void zero_list(88list_ptr89);90int add_to_list (91list_ptr , void *92);93list_ptr new_list (94void95);96list_ptr dup_list_head (97list_ptr , int98);99unsigned int list_length(100list_ptr101);102void *delete_from_list (103list_ptr , void *104);105void delete_list(106list_ptr , int107);108void delete_list_destroying (109list_ptr , DESTRUCT_FUNC_PTR110);111void *first_in_list (112list_ptr113);114void *next_in_list (115list_ptr116);117int list_is_empty (118list_ptr119);120121#endif122123124