summary refs log tree commit diff stats
path: root/src/fe-gtk/textgui.c
AgeCommit message (Expand)Author
2013-04-02Only include top level includes from GTK+, GLib and GDK-PixBufBerke Viktor
2012-12-23fix incorrect FSF addressDan Mashal
2012-10-24A lot more rebrandingBerke Viktor
2012-10-22Variable cleanup for the restBerke Viktor
2012-10-22Variable cleanup for input_*Berke Viktor
2012-07-21Add extension filter for file dialogs, specify filters and starting folder fo...Berke Viktor
2011-02-24add xchat r1489berkeviktor@aol.com
'>9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
               
































                                                                                                          
#include <io.h>
#include <fcntl.h>
#include "thread.h"

thread *
thread_new (void)
{
	thread *th;

	th = calloc (1, sizeof (*th));
	if (!th)
	{
		return NULL;
	}

	if (_pipe (th->pipe_fd, 4096, _O_BINARY) == -1)
	{
		free (th);
		return NULL;
	}

	return th;
}

int
thread_start (thread *th, void *(*start_routine)(void *), void *arg)
{
	DWORD id;

	CloseHandle (CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE)start_routine, arg, 0, (DWORD *)&id));
	th->threadid = id;

	return 1;
}