repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make UEFI boot-platform build again
[haiku.git]
/
headers
/
private
/
kernel
/
arch
/
sparc
/
thread_struct.h
blob
34f68ec6bc1e86ae5053c5a77adf37a6cbe7a20d
1
/*
2
** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3
** Distributed under the terms of the NewOS License.
4
*/
5
#ifndef _SPARC64_THREAD_STRUCT_H
6
#define _SPARC64_THREAD_STRUCT_H
7
8
// architecture specific thread info
9
struct
arch_thread
{
10
addr sp
;
11
};
12
13
struct
arch_proc
{
14
int
foo
;
15
};
16
17
#endif
18