repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update rx (mobile builds).
[mono-project.git]
/
mono
/
io-layer
/
context.c
blob
75155a40ac8419e2f6b8009ed4195e677b39eb1b
1
/*
2
* context.c: Processor-specific register contexts
3
*
4
* Author:
5
* Dick Porter (dick@ximian.com)
6
*
7
* (C) 2002 Ximian, Inc.
8
*/
9
10
#include <config.h>
11
#include <glib.h>
12
#include <pthread.h>
13
14
#include
"mono/io-layer/wapi.h"
15
16
gboolean
GetThreadContext
(
gpointer handle G_GNUC_UNUSED
,
WapiContext
*
context G_GNUC_UNUSED
)
17
{
18
return
(
FALSE
);
19
}
20
21
22