From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Received: (qmail 767 invoked from network); 16 Apr 2020 03:16:17 -0000 Received-SPF: pass (mother.openwall.net: domain of lists.openwall.com designates 195.42.179.200 as permitted sender) receiver=inbox.vuxu.org; client-ip=195.42.179.200 envelope-from= Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with UTF8ESMTPZ; 16 Apr 2020 03:16:17 -0000 Received: (qmail 5937 invoked by uid 550); 16 Apr 2020 03:16:15 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 5916 invoked from network); 16 Apr 2020 03:16:14 -0000 Date: Wed, 15 Apr 2020 23:16:01 -0400 From: Rich Felker To: sidneym@codeaurora.org Cc: musl@lists.openwall.com Message-ID: <20200416031601.GR11469@brightrain.aerifal.cx> References: <093e01d6139c$90bd9da0$b238d8e0$@codeaurora.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <093e01d6139c$90bd9da0$b238d8e0$@codeaurora.org> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [musl][hexagon] testing updates On Wed, Apr 15, 2020 at 10:10:20PM -0500, sidneym@codeaurora.org wrote: > Updated alltypes.h.in and added sem.h. This change cleared the following > errors: > > src/functional/pthread_mutex-static.exe > > src/functional/pthread_mutex.exe > > src/functional/pthread_mutex_pi-static.exe > > src/functional/pthread_mutex_pi.exe > src/functional/sem_init-static.exe > > src/functional/sem_init.exe I'm confused how these changed at all from the changes you made. sem_init is for POSIX semaphores not sysv ipc ones. The bits/sem.h things don't have anything to do with it. > src/regression/pthread_cond-smasher-static.exe > > src/regression/pthread_cond-smasher.exe > > src/regression/pthread_cond_wait-cancel_ignored-static.exe > > src/regression/pthread_cond_wait-cancel_ignored.exe > > src/regression/pthread_once-deadlock-static.exe Likewise these shouldn't have changed either. If they did it's probably some other hidden state in your test environment. > The patch is here: > https://github.com/quic/musl/commit/ca20acd472a8e9e58e584d51c4cd00ced6f37087 The change to alltypes.h.in is wrong. It changes time_t to 32-bit, which is no longer a supported configuration and not the intent. With that part reverted and the sysvipc bits headers fixed as described before, I think you might have it mostly working. Rich