Sha256: 931de333fa56e22ad33e14068af4286040ee6d0cc46bfd814306637b2e1b5ca6

Contents?: true

Size: 991 Bytes

Versions: 119

Compression:

Stored size: 991 Bytes

Contents

/***************************************************************
  process.c
***************************************************************/

#include <windows.h>
#include "process.h"

int _getpid(void)
{
	return (int)GetCurrentProcessId();
}

int rb_w32_getpid(void)
{
	return (int)GetCurrentProcessId();
}

int _getppid(void)
{
	return (int)GetCurrentProcessId();
}

int rb_w32_getppid(void)
{
	return (int)GetCurrentProcessId();
}

/* I wonder _exec and _swawn should be replaced with CreateProcess... */
int _execl(const char *cmdname, const char *arg0, 
		   va_list va_args)
{
	return 0;
}

int execv(const char *path, char *const argv[])
{
	return 0;
}

void abort(void)
{
    exit(-1);
}

int _cwait( int *termstat, int procHandle, int action )
{
	return 0;
}

intptr_t _spawnle(int mode, 
	const char *cmdname, const char *arg0,
	va_list va_argn)
{
	return 0;
}

intptr_t _spawnvpe(int mode,
	const char *cmdname, const char *const *argv,
	const char *const *envp)
{
	return 0;
}

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
rhodes-3.5.1.12 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.5 platform/shared/ruby/wince/process_wce.c
rhodes-3.4.2 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.4 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.3 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.3.beta.4 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.3.beta.3 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.3.beta.2 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.3.beta.1 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.7 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.6 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.5 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.4 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.3 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.2 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.2.beta.1 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.1 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.0 platform/shared/ruby/wince/process_wce.c
rhodes-3.3.0.beta.3 platform/shared/ruby/wince/process_wce.c