From 5afbf342b8f033bfe857d46e7aa235aadedd3689 Mon Sep 17 00:00:00 2001 From: jasone Date: Sun, 11 Jul 1999 06:06:52 +0000 Subject: Fix a couple more coding style nits. --- lib/libc_r/uthread/uthread_create.c | 4 ++-- lib/libc_r/uthread/uthread_gc.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/libc_r') diff --git a/lib/libc_r/uthread/uthread_create.c b/lib/libc_r/uthread/uthread_create.c index 1641ce4..26c0eba 100644 --- a/lib/libc_r/uthread/uthread_create.c +++ b/lib/libc_r/uthread/uthread_create.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: uthread_create.c,v 1.15 1999/07/06 00:25:36 jasone Exp $ + * $Id: uthread_create.c,v 1.16 1999/07/11 05:56:36 jasone Exp $ */ #include #include @@ -81,7 +81,7 @@ pthread_create(pthread_t * thread, const pthread_attr_t * attr, } /* Allocate memory for a default-size stack: */ else if (pattr->stacksize_attr == PTHREAD_STACK_DEFAULT) { - struct stack * spare_stack; + struct stack *spare_stack; /* Allocate or re-use a default-size stack. */ diff --git a/lib/libc_r/uthread/uthread_gc.c b/lib/libc_r/uthread/uthread_gc.c index cb8de13..7c08f23 100644 --- a/lib/libc_r/uthread/uthread_gc.c +++ b/lib/libc_r/uthread/uthread_gc.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: uthread_gc.c,v 1.6 1999/07/06 00:25:37 jasone Exp $ + * $Id: uthread_gc.c,v 1.7 1999/07/11 05:56:37 jasone Exp $ * * Garbage collector thread. Frees memory allocated for dead threads. * @@ -140,7 +140,7 @@ _thread_gc(pthread_addr_t arg) * Default-size stack. Cache * it: */ - struct stack * spare_stack; + struct stack *spare_stack; spare_stack = (pthread->stack @@ -181,7 +181,7 @@ _thread_gc(pthread_addr_t arg) * Default-size stack. Cache * it: */ - struct stack * spare_stack; + struct stack *spare_stack; spare_stack = (pthread->stack -- cgit v1.1