/*
* 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 <ucontext.h>
#include <setjmp.h>
/* ARGSUSED2 */
void *
{
struct {
} frame;
/*
* Top-of-stack must be rounded down to STACK_ALIGN and
* there must be a minimum frame.
*/
/*
* 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.
*/
stack -= 3;
return (stack);
return (NULL);
}
int
{
/* clear the context */
/* setup to store the current thread pointer in %fs */
/* all contexts should have a valid data segment descriptor for %ss */
/*
* Setup 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
{
}
void
{
} else {
}
}
void
{
}
}
int
{
/* LINTED alignment */
else {
}
if (savemask) {
}
return (0);
}
void
smt_pause(void)
{
SMT_PAUSE();
}