summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/clone.S
blob: ea43bc2e259afb6756e50ff717ffb6a667ff4867 (plain)
1
2
3
4
5
6
7
8
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "syscalls.h"
#include <errno.h>
#include "PIC.h"

.text
.type clone,@function
.weak clone
clone:
.type __clone,@function
.global __clone
__clone:
	mov	$-EINVAL, %eax

	movl	4(%esp), %ecx	/* have non null thread_funcion */
	jecxz	.Lclone_error

	movl	8(%esp), %ecx	/* have non null child_stack pointer */
	jecxz	.Lclone_error

	/* put the parameter on thread stack */
	subl	$8, %ecx

	movl	16(%esp), %eax	/* arg */
	movl	%eax, 4(%ecx)

	movl	4(%esp), %eax	/* thread_func */
	movl	%eax, 0(%ecx)

	/* the syscall */
	pushl	%ebx
	movl	16(%esp), %ebx	/* flags */
	movl	$__NR_clone, %eax
	int	$0x80
	popl	%ebx

	testl	%eax, %eax
	jl	.Lclone_error
	jne	.Lreturn
.Lstart_thread:
	xorl	%ebp,%ebp
	call	*%ebx
	pushl	%eax
	call	_exit

.Lclone_error:
	negl	%eax
	pushl	%eax
#ifdef PIC
	pushl	%ebx
	PIC_INIT
	call	__errno_location@PLT
	popl	%ebx
#else
	call	__errno_location
#endif
	popl	%ecx
	movl	%ecx, (%eax)
	orl	$-1, %eax
.Lreturn:
	ret