~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to gnulib-tests/glthread/thread.c

  • Committer: Colin Watson
  • Date: 2013-10-30 15:48:33 UTC
  • mfrom: (8.3.5 sid)
  • Revision ID: cjwatson@canonical.com-20131030154833-xdt6e1yfffqom1c4
merge from Debian 8.21-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Creating and controlling threads.
2
 
   Copyright (C) 2005-2012 Free Software Foundation, Inc.
 
2
   Copyright (C) 2005-2013 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
21
21
#include <config.h>
22
22
 
23
23
/* Specification.  */
 
24
# define _GLTHREAD_THREAD_INLINE _GL_EXTERN_INLINE
24
25
#include "glthread/thread.h"
25
26
 
26
27
#include <stdlib.h>
85
86
};
86
87
 
87
88
/* Return a real HANDLE object for the current thread.  */
88
 
static inline HANDLE
 
89
static HANDLE
89
90
get_current_thread_handle (void)
90
91
{
91
92
  HANDLE this_handle;