2 * Copyright (c) 2017 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
29 #include <dispatch/dispatch.h>
30 #include <objc/objc-internal.h>
32 #include "AutoreleaseTest.h"
35 read_releases_pending(int fd
, void (^handler
)(ssize_t
))
37 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT
, 0), ^{
40 FILE *fp
= fdopen(fd
, "r");
44 while (getline(&line
, &linecap
, fp
) > 0) {
47 if (sscanf(line
, "objc[%*d]: %ld releases pending", &pending
) == 1) {
61 pending_autorelease_count(void)
63 __block ssize_t result
= -1;
64 dispatch_semaphore_t sema
;
68 // stderr replacement pipe
70 fcntl(fds
[1], F_SETNOSIGPIPE
, 1);
72 // sead asynchronously - takes ownership of fds[0]
73 sema
= dispatch_semaphore_create(0);
74 read_releases_pending(fds
[0], ^(ssize_t pending
) {
76 dispatch_semaphore_signal(sema
);
79 // save and replace stderr
80 saved_stderr
= dup(STDERR_FILENO
);
81 dup2(fds
[1], STDERR_FILENO
);
84 // make objc print the current autorelease pool
85 _objc_autoreleasePoolPrint();
88 dup2(saved_stderr
, STDERR_FILENO
);
91 // wait for the reader
92 dispatch_semaphore_wait(sema
, DISPATCH_TIME_FOREVER
);
93 #if !__has_feature(objc_arc)
94 dispatch_release(sema
);