10Sstevel@tonic-gate\ 2*11426SRoger.Faulkner@Sun.COM\ Copyright 2010 Sun Microsystems, Inc. All rights reserved. 30Sstevel@tonic-gate\ Use is subject to license terms. 40Sstevel@tonic-gate\ 50Sstevel@tonic-gate\ CDDL HEADER START 60Sstevel@tonic-gate\ 70Sstevel@tonic-gate\ The contents of this file are subject to the terms of the 8*11426SRoger.Faulkner@Sun.COM\ Common Development and Distribution License (the "License"). 9*11426SRoger.Faulkner@Sun.COM\ You may not use this file except in compliance with the License. 100Sstevel@tonic-gate\ 110Sstevel@tonic-gate\ You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 120Sstevel@tonic-gate\ or http://www.opensolaris.org/os/licensing. 130Sstevel@tonic-gate\ See the License for the specific language governing permissions 140Sstevel@tonic-gate\ and limitations under the License. 150Sstevel@tonic-gate\ 160Sstevel@tonic-gate\ When distributing Covered Code, include this CDDL HEADER in each 170Sstevel@tonic-gate\ file and include the License file at usr/src/OPENSOLARIS.LICENSE. 180Sstevel@tonic-gate\ If applicable, add the following below this CDDL HEADER, with the 190Sstevel@tonic-gate\ fields enclosed by brackets "[]" replaced with your own identifying 200Sstevel@tonic-gate\ information: Portions Copyright [yyyy] [name of copyright owner] 210Sstevel@tonic-gate\ 220Sstevel@tonic-gate\ CDDL HEADER END 230Sstevel@tonic-gate\ 240Sstevel@tonic-gate 250Sstevel@tonic-gate\ 260Sstevel@tonic-gate\ offsets.in: input file to produce assym.h using the ctfstabs program 270Sstevel@tonic-gate\ 280Sstevel@tonic-gate 290Sstevel@tonic-gate#include "libc_int.h" 300Sstevel@tonic-gate#include "thr_uberdata.h" 310Sstevel@tonic-gate#include <setjmp.h> 320Sstevel@tonic-gate 330Sstevel@tonic-gateTLS_index 340Sstevel@tonic-gate ti_moduleid 350Sstevel@tonic-gate ti_tlsoffset 360Sstevel@tonic-gate 370Sstevel@tonic-gatetls_t SIZEOF_TLS_T 380Sstevel@tonic-gate tls_data 390Sstevel@tonic-gate tls_size 400Sstevel@tonic-gate 410Sstevel@tonic-gate\#define UL_TLSENT UL_TLS+TLS_DATA 420Sstevel@tonic-gate\#define UL_NTLSENT UL_TLS+TLS_SIZE 430Sstevel@tonic-gate 440Sstevel@tonic-gateulwp_t 450Sstevel@tonic-gate ul_tls 460Sstevel@tonic-gate ul_ustack 470Sstevel@tonic-gate ul_vfork 480Sstevel@tonic-gate ul_schedctl 490Sstevel@tonic-gate ul_schedctl_called 50*11426SRoger.Faulkner@Sun.COM ul_siglink 510Sstevel@tonic-gate ul_sigmask 520Sstevel@tonic-gate 530Sstevel@tonic-gatestack_t 540Sstevel@tonic-gate ss_sp 550Sstevel@tonic-gate ss_size 560Sstevel@tonic-gate 570Sstevel@tonic-gate\#define UC_MCONTEXT_GREGS UC_MCONTEXT+GREGS 580Sstevel@tonic-gate 590Sstevel@tonic-gateucontext_t SIZEOF_UCONTEXT_T 600Sstevel@tonic-gate uc_mcontext 610Sstevel@tonic-gate 620Sstevel@tonic-gatemcontext_t 630Sstevel@tonic-gate gregs 640Sstevel@tonic-gate 650Sstevel@tonic-gatesigjmp_buf SIZEOF_SIGJMP_BUF 66