Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ configure
/m4/*
!/m4/ax_*.m4

# build-aux/release.mk related litter
/.tarball-version
/tag-*

libtool
.version
.tarball-version
libqb.spec
libqb-*
cov
Expand Down
2 changes: 1 addition & 1 deletion build-aux/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ $(project)-$(version).sha256:

.PHONY: sign
ifeq (,$(gpgsignkey))
sign: tarballs
sign: $(deliverables)
@echo No GPG signing key defined
else
sign: $(deliverables:=.asc)
Expand Down
18 changes: 13 additions & 5 deletions docs/man8/qb-blackbox.8
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,22 @@
.\" * You should have received a copy of the GNU Lesser General Public License
.\" * along with libqb. If not, see <http://www.gnu.org/licenses/>.
.\" */
.TH QB-BLACKBOX 8 2012-05-28
.TH QB-BLACKBOX 8 2017-07-27
.SH NAME
qb-blackbox \- Display "flight data" from the "blackbox".
.SH SYNOPSIS
.B "qb-blackbox <blackbox files>..."
\fBqb-blackbox\fR [\fIblackbox-file\fR...]
.SH DESCRIPTION
.B qb-blackbox
Print out the logs (including debug logs) that were recorded using libqb's blackbox.
\fBqb-blackbox\fR prints out the logs (including debug logs) that were
recorded using libqb's blackbox mechanism.
.SS Portability notes
Due to variations amongst platforms, some of which directly impact
the libqb's blackbox format handling (e.g. page size), there's currently
only the commitment that \fBqb-blackbox\fR shall decode the blackbox files
recorded at the same plaform (plus the same page size) while using libqb
compiled with the same relevant compile-time options
(e.g. \fBUSE_CACHE_LINE_ALIGNMENT\fR) as linked to this decoder.
Otherwise, your mileage may vary.
.SH EXAMPLES
.TP
Get info to help developers diagnose a crash.
Expand Down Expand Up @@ -53,7 +61,7 @@ Mar 23 20:58:57 member_object_joined():301 Member joined: r(0) ip(192.168.122.1)
Mar 23 20:58:57 sync_abort():594 ENTERING sync_abort()
.br
.SH SEE ALSO
.BR qblog.h (3),
.BR qblog.h (3)
.SH AUTHOR
Angus Salkeld
.PP
2 changes: 1 addition & 1 deletion include/qb/qbloop.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ int32_t qb_loop_poll_low_fds_event_set(qb_loop_t *l,

/**
* Add a poll job to the mainloop.
* @note it is a re-occuring job.
* @note it is a re-occurring job.
*
* @param l pointer to the loop instance
* @param p the priority
Expand Down
2 changes: 1 addition & 1 deletion include/qb/qbrb.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ ssize_t qb_rb_chunk_write(qb_ringbuffer_t * rb, const void *data, size_t len);
* Allocate space for a chunk of the given size.
*
* If type == QB_RB_FLAG_OVERWRITE and NULL is returned, memory corruption of
* the memory file has occured. The ringbuffer should be destroyed.
* the memory file has occurred. The ringbuffer should be destroyed.
* If type == QB_RB_NORMAL then when there is not enough space it will
* return NULL.
*
Expand Down