Current Path : /usr/src/tools/regression/tls/ttls1/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/tools/regression/tls/ttls1/ttls1.c |
/* $FreeBSD: release/9.1.0/tools/regression/tls/ttls1/ttls1.c 133162 2004-08-05 08:07:40Z dfr $ */ #include <stdio.h> extern int __thread xx1; extern int __thread xx2; extern int __thread xxa[]; int __thread a[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; extern int xxyy(); int main(int argc, char** argv) { printf("xx1=%d, xx2=%d, xxa[5]=%d, a[5]=%d, xxyy()=%d\n", xx1, xx2, xxa[5], a[5], xxyy()); }