/*
* 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
*/
/*
*/
#include "lint.h"
#include "thr_uberdata.h"
#include <procfs.h>
#include <setjmp.h>
#include "sigjmp_struct.h"
/* ARGSUSED2 */
void *
{
/*
* Top-of-stack must be rounded down to STACK_ALIGN and
* there must be a minimum frame for the register window.
*/
/*
* This will return NULL if the kernel cannot allocate
* a page for the top page of the stack. This will cause
* thr_create(), pthread_create() or pthread_attr_setstack()
* to fail, passing the problem up to the application.
*/
return ((void *)stack);
return (NULL);
}
int
{
/* clear the context */
/*
* Clear the top stack frame.
* If this fails, pass the problem up to the application.
*/
return (ENOMEM);
/* fill in registers of interest */
return (0);
}
/*
* Machine-dependent startup code for a newly-created thread.
*/
void *
{
tls_setup();
/* signals have been deferred until now */
return (NULL); /* cancelled by pthread_create() */
}
void
{
int fpu_enabled;
#ifdef __sparcv9
#else
#endif /* __sparcv9 */
if (fpu_enabled) {
} else {
}
}
void
{
} else {
}
}
void
{
}
}
int
{
/*
* bp->sjs_sp, bp->sjs_pc, bp->sjs_fp and bp->sjs_i7 are already set.
* Also, if we are running in 64-bit mode (__sparcv9),
* then bp->sjs_asi and bp->sjs_fprs are already set.
*/
else {
}
if (savemask) {
}
return (0);
}