vm: fix typos
parent
43b2e02534
commit
946b7415e0
|
@ -3,7 +3,7 @@
|
||||||
namespace factor
|
namespace factor
|
||||||
{
|
{
|
||||||
|
|
||||||
pthread_key_t current_vm_tls_key = 0;
|
pthread_key_t current_vm_tls_key;
|
||||||
|
|
||||||
void init_mvm()
|
void init_mvm()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#include "master.cpp"
|
#include "master.hpp"
|
||||||
|
|
||||||
namespace factor
|
namespace factor
|
||||||
{
|
{
|
||||||
|
|
||||||
|
std::map<THREADHANDLE, factor_vm*> thread_vms;
|
||||||
|
|
||||||
struct startargs {
|
struct startargs {
|
||||||
int argc;
|
int argc;
|
||||||
vm_char **argv;
|
vm_char **argv;
|
||||||
|
|
Loading…
Reference in New Issue