Jan Beich

Results 75 comments of Jan Beich

From [gmobile/src/gm-timeout.c](https://github.com/agx/gmobile/blob/d483537aee4778b114ce5d50c4c8a9f8d58337ed/src/gm-timeout.c): ```c static GSource * gm_timeout_source_once_new (gulong timeout_ms) { ... timer->fd = timerfd_create (CLOCK_BOOTTIME, 0); if (timer->fd == -1) return (GSource*)timer; ... static gboolean gm_timeout_once_prepare (GSource *source, gint *timeout)...

Native timerfd on [NetBSD](https://github.com/NetBSD/src/blob/netbsd-10/sys/kern/sys_timerfd.c) and [FreeBSD](https://github.com/freebsd/freebsd-src/blob/stable/14/sys/kern/sys_timerfd.c) is also limited to `CLOCK_REALTIME` and `CLOCK_MONOTONIC`.

Looking at https://github.com/illumos/illumos-gate/commit/6a72db4a7fa1 I can't find what it does with unsupported clocks.

Requires review/approval by @joneum (maintainer). Looks like this hasn't been submitted via bugzilla, so cannot land under "maintainer timeout".

Adding `__attribute__((__packed__))` to `TestCase` definition makes `sizeof` output more predictable.

Apply https://github.com/Megamouse/rpcs3/pull/10 to fix FreeBSD CI

May need a rebase after 681a6ef73ca1: ```c++ rpcs3/rpcs3qt/gs_frame.cpp:358:5: error: use of undeclared identifier 'QSound' QSound::play(qstr(sound_path)); ^ ```

> My GPU is NVidia. Do I have to install some package for this? According to [unrelated bug](https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=267446) you have GeForce GT 610 which is limited to legacy 390 series...

Here's an **incomplete** list: - go-mtpfs can use Android extensions - simple-mtpfs supports more platforms (e.g. hanwen/go-fuse#85 or Go on sparc64, aarch64) - simple-mtpfs can mount by device file -...

The following seems to help: ```diff --- libpkg/pkgdb.c.orig 2022-12-11 18:22:41 UTC +++ libpkg/pkgdb.c @@ -825,7 +825,7 @@ pkgdb_open_repos(struct pkgdb *db, const char *reponam struct pkg_repo *r = NULL; while (pkg_repos(&r)...