Your message dated Mon, 23 Mar 2020 03:50:28 +0000
with message-id <e1jge6e-0001zh...@fasolo.debian.org>
and subject line Bug#954622: fixed in jitterdebugger 0.3.1+git20200117.b90ff3a-1
has caused the Debian Bug report #954622,
regarding jitterdebugger: FTBFS: jitterdebugger.c:139:14: error: static
declaration of ‘gettid’ follows non-static declaration
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
954622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954622
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: jitterdebugger
Version: 0.3.1-1
Severity: serious
Justification: FTBFS on amd64
Tags: bullseye sid ftbfs
Usertags: ftbfs-20200321 ftbfs-bullseye
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
> -Wformat -Werror=format-security -Wall -pedantic -Wall -Wstrict-aliasing=1
> -Wno-unused-result -pthread -O2 -Wdate-time -D_FORTIFY_SOURCE=2 -c -o
> jittersamples.o jittersamples.c
> In file included from jittersamples.c:12:
> jitterdebugger.h:43:36: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 43 | #define err_handler(error, fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:46:30: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 46 | #define warn_handler(fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:49:27: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 49 | #define err_abort(fmt, arg...) do { \
> | ^~~
> In file included from jitterutils.c:11:
> jitterdebugger.h:43:36: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 43 | #define err_handler(error, fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:46:30: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 46 | #define warn_handler(fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:49:27: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 49 | #define err_abort(fmt, arg...) do { \
> | ^~~
> jitterutils.c: In function ‘ringbuffer_write’:
> jitterdebugger.h:13:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 13 | ({ \
> | ^
> jitterutils.c:63:9: note: in expansion of macro ‘READ_ONCE’
> 63 | read = READ_ONCE(rb->read);
> | ^~~~~~~~~
> jitterdebugger.h:20:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 20 | ({ \
> | ^
> jitterutils.c:73:2: note: in expansion of macro ‘WRITE_ONCE’
> 73 | WRITE_ONCE(rb->write, rb->write + 1);
> | ^~~~~~~~~~
> jitterutils.c: In function ‘ringbuffer_read’:
> jitterdebugger.h:13:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 13 | ({ \
> | ^
> jitterutils.c:81:10: note: in expansion of macro ‘READ_ONCE’
> 81 | write = READ_ONCE(rb->write);
> | ^~~~~~~~~
> jitterdebugger.h:20:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 20 | ({ \
> | ^
> jitterutils.c:89:2: note: in expansion of macro ‘WRITE_ONCE’
> 89 | WRITE_ONCE(rb->read, rb->read + 1);
> | ^~~~~~~~~~
> In file included from jitterdebugger.c:24:
> jitterdebugger.h:43:36: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 43 | #define err_handler(error, fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:46:30: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 46 | #define warn_handler(fmt, arg...) do { \
> | ^~~
> jitterdebugger.h:49:27: warning: ISO C does not permit named variadic macros
> [-Wvariadic-macros]
> 49 | #define err_abort(fmt, arg...) do { \
> | ^~~
> jitterdebugger.c: In function ‘sig_handler’:
> jitterdebugger.h:20:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 20 | ({ \
> | ^
> jitterdebugger.c:63:2: note: in expansion of macro ‘WRITE_ONCE’
> 63 | WRITE_ONCE(shutdown, 1);
> | ^~~~~~~~~~
> jitterdebugger.c: At top level:
> jitterdebugger.c:139:14: error: static declaration of ‘gettid’ follows
> non-static declaration
> 139 | static pid_t gettid(void)
> | ^~~~~~
> In file included from /usr/include/unistd.h:1170,
> from jitterdebugger.c:6:
> /usr/include/x86_64-linux-gnu/bits/unistd_ext.h:34:16: note: previous
> declaration of ‘gettid’ was here
> 34 | extern __pid_t gettid (void) __THROW;
> | ^~~~~~
> In file included from jitterdebugger.c:24:
> jitterdebugger.c: In function ‘display_stats’:
> jitterdebugger.h:13:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 13 | ({ \
> | ^
> jitterdebugger.c:234:10: note: in expansion of macro ‘READ_ONCE’
> 234 | while (!READ_ONCE(shutdown)) {
> | ^~~~~~~~~
> jitterdebugger.c: In function ‘store_samples’:
> jitterdebugger.h:13:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 13 | ({ \
> | ^
> jitterdebugger.c:265:10: note: in expansion of macro ‘READ_ONCE’
> 265 | while (!READ_ONCE(shutdown)) {
> | ^~~~~~~~~
> jitterdebugger.c:268:37: warning: taking address of packed member of ‘struct
> latency_sample’ may result in an unaligned pointer value
> [-Waddress-of-packed-member]
> 268 | while (!ringbuffer_read(s[i].rb, &sample.ts, &sample.val)) {
> | ^~~~~~~~~~
> jitterdebugger.c:268:49: warning: taking address of packed member of ‘struct
> latency_sample’ may result in an unaligned pointer value
> [-Waddress-of-packed-member]
> 268 | while (!ringbuffer_read(s[i].rb, &sample.ts, &sample.val)) {
> | ^~~~~~~~~~~
> In file included from jitterdebugger.c:24:
> jitterdebugger.c: In function ‘worker’:
> jitterdebugger.h:13:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 13 | ({ \
> | ^
> jitterdebugger.c:305:10: note: in expansion of macro ‘READ_ONCE’
> 305 | while (!READ_ONCE(shutdown)) {
> | ^~~~~~~~~
> jitterdebugger.h:20:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 20 | ({ \
> | ^
> jitterdebugger.c:336:4: note: in expansion of macro ‘WRITE_ONCE’
> 336 | WRITE_ONCE(shutdown, 1);
> | ^~~~~~~~~~
> jitterdebugger.c: In function ‘main’:
> jitterdebugger.h:20:1: warning: ISO C forbids braced-groups within
> expressions [-Wpedantic]
> 20 | ({ \
> | ^
> jitterdebugger.c:609:2: note: in expansion of macro ‘WRITE_ONCE’
> 609 | WRITE_ONCE(shutdown, 1);
> | ^~~~~~~~~~
> make[1]: *** [<builtin>: jitterdebugger.o] Error 1
The full build log is available from:
http://qa-logs.debian.net/2020/03/21/jitterdebugger_0.3.1-1_unstable.log
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---
--- Begin Message ---
Source: jitterdebugger
Source-Version: 0.3.1+git20200117.b90ff3a-1
Done: =?utf-8?b?U1ogTGluICjmnpfkuIrmmbop?= <sz...@debian.org>
We believe that the bug you reported is fixed in the latest version of
jitterdebugger, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 954...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
SZ Lin (林上智) <sz...@debian.org> (supplier of updated jitterdebugger package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Mon, 23 Mar 2020 11:18:19 +0800
Source: jitterdebugger
Architecture: source
Version: 0.3.1+git20200117.b90ff3a-1
Distribution: unstable
Urgency: medium
Maintainer: SZ Lin (林上智) <sz...@debian.org>
Changed-By: SZ Lin (林上智) <sz...@debian.org>
Closes: 954622
Changes:
jitterdebugger (0.3.1+git20200117.b90ff3a-1) unstable; urgency=medium
.
* Import new upstream release (Closes: #954622)
* d/control:
- Use debhelper-compat (= 12) in build-dependency to replace d/compat
- Add Rules-Requires-Root: no
- Bump Standards-Version to 4.5.0
* d/watch:
- Fix wrong format in package naming
Checksums-Sha1:
87a7f0f9a3f7db4a8bdaa28dc2d651de2be415e6 2044
jitterdebugger_0.3.1+git20200117.b90ff3a-1.dsc
670d3861d7c89848c1060756c4c97caf3474d683 19047
jitterdebugger_0.3.1+git20200117.b90ff3a.orig.tar.gz
7b10e069f81183577f303e6da66df72f11892166 2400
jitterdebugger_0.3.1+git20200117.b90ff3a-1.debian.tar.xz
90a2f41527cda46a3daf0efbbee4e658f44cc334 6242
jitterdebugger_0.3.1+git20200117.b90ff3a-1_amd64.buildinfo
Checksums-Sha256:
fcd35a70accf093e5c1d2a5daeb1e2f2dd489df98aa91a3d7fd4489bcb8fb4fb 2044
jitterdebugger_0.3.1+git20200117.b90ff3a-1.dsc
082819a422fb202389c9d69098024571d919ea86b3ec55f160da1b84d37e1be4 19047
jitterdebugger_0.3.1+git20200117.b90ff3a.orig.tar.gz
b7406f743a7be9ca68d503402022bf3dbf5c56b8800fa9d5dbe4c3a35e0db0e9 2400
jitterdebugger_0.3.1+git20200117.b90ff3a-1.debian.tar.xz
dae5b144beff1d714fa20a2a1b7565557e690f436f3046efafd85521c75718c2 6242
jitterdebugger_0.3.1+git20200117.b90ff3a-1_amd64.buildinfo
Files:
db0e1ec440f7837c563f35db8863ca86 2044 misc optional
jitterdebugger_0.3.1+git20200117.b90ff3a-1.dsc
c85a0846c556d351e487a05dd95114a2 19047 misc optional
jitterdebugger_0.3.1+git20200117.b90ff3a.orig.tar.gz
e1dcd25b1a8d0fd614675dfdf113cab4 2400 misc optional
jitterdebugger_0.3.1+git20200117.b90ff3a-1.debian.tar.xz
e3fe29d61fdffb3c66597414a1aa1072 6242 misc optional
jitterdebugger_0.3.1+git20200117.b90ff3a-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEF4+DOLMUAeME/ES6qVmzipVh8/kFAl54LwcACgkQqVmzipVh
8/kWaQ/+NSd8+BESyxwJV9fMiG2NZM/SZX0QUxrTt8g9KAEvSorO7Bt/vAMCuGev
epElYQeOib15zbEFBiMO5KtKo8odnbvaaNYdDFOk6MipL+Eymgqgilki+yzqvZLN
B1/1eGGb0Nc3GQsvgas61/z68+dG9UmxckJoxqXRwvu6nG6LHsPCXpg9uzptis2V
c8FUibFk4+MQ7D8R6ToJYIdo7dPaIbjGe1iHUlewuPje8EW4sbRsRcwEDS4dIaqp
70bCB8/pd3lhoM2fM6FUl1lpzMQj/irsWud2ohfhXRtE6Ij+ku/MtFiDXpRPdHhp
LD56AIAtUI48CM0iu2NzzLXCOEK2Htff0pf2d5+df+1j6a47ALO4NmDh6WVPGvEP
sslkziog1o3nrnJXBYzY3MfgArXLYrwt4lHb3huVT+FjcfCsShLSOOdIkXLcGzUN
UAS9sYpyBZmouITt1lAo7p6cd4Ub9pW/16JAlAxoc1spqRtsuJCvxhXx1iBrng8v
/O8ayRsrf5AKYFkAuu2K/HAca/vp7CrJONDdnIeOXbkkOtj1X0/sHH/4LlmbkXDo
kIQbm8FOZ2MXb/rIcU/6W0KYIwfqApy2C8E95x2HJP46H3bkHqoZB/hDbg5kMI89
YbrMyASsTyg41AyVtL+wAx3HyTrgayId7mECFjpz4tMHNMTTrUE=
=pi0l
-----END PGP SIGNATURE-----
--- End Message ---