ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcoro/coro.c
(Generate patch)

Comparing libcoro/coro.c (file contents):
Revision 1.19 by root, Wed Oct 19 19:04:24 2005 UTC vs.
Revision 1.20 by root, Thu Oct 26 05:20:47 2006 UTC

1/* 1/*
2 * Copyright (c) 2001-2005 Marc Alexander Lehmann <schmorp@schmorp.de> 2 * Copyright (c) 2001-2006 Marc Alexander Lehmann <schmorp@schmorp.de>
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without modifica- 4 * Redistribution and use in source and binary forms, with or without modifica-
5 * tion, are permitted provided that the following conditions are met: 5 * tion, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright notice, 7 * 1. Redistributions of source code must retain the above copyright notice,
45# define STACK_ADJUST_SIZE(sp,ss) (ss) 45# define STACK_ADJUST_SIZE(sp,ss) (ss)
46# else 46# else
47# define STACK_ADJUST_PTR(sp,ss) (sp) 47# define STACK_ADJUST_PTR(sp,ss) (sp)
48# define STACK_ADJUST_SIZE(sp,ss) (ss) 48# define STACK_ADJUST_SIZE(sp,ss) (ss)
49# endif 49# endif
50#endif
51
52#if CORO_UCONTEXT
53# include <stddef.h>
50#endif 54#endif
51 55
52#if CORO_SJLJ || CORO_LOSER || CORO_LINUX || CORO_IRIX 56#if CORO_SJLJ || CORO_LOSER || CORO_LINUX || CORO_IRIX
53 57
54#include <stdlib.h> 58#include <stdlib.h>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines