Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygtls_padsize.h « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1782c586e88e0a8eb4394d7dde763b124ceb5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* cygtls_padsize.h: Extra file to be included from utils.

   Copyright 2015 Red Hat, Inc.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

/* FIXME: Find some way to autogenerate this value */
#ifdef __x86_64__
const int CYGTLS_PADSIZE = 12800;	/* Must be 16-byte aligned */
#else
const int CYGTLS_PADSIZE = 12700;
#endif