mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-22 11:22:38 -04:00
+ update
This commit is contained in:
parent
eb2be48351
commit
5b9bb8c366
@ -62,6 +62,9 @@
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "kiwix"
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#define PACKAGE_URL ""
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "0.9"
|
||||
|
||||
|
@ -61,6 +61,9 @@
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
|
@ -77,7 +77,13 @@ namespace zim
|
||||
|
||||
#else
|
||||
|
||||
*reinterpret_cast<int32_t*>(ret.data) = reinterpret_cast<int32_t>(&ret);
|
||||
union {
|
||||
void* p;
|
||||
int32_t n;
|
||||
} u;
|
||||
u.p = &ret;
|
||||
|
||||
*reinterpret_cast<int32_t*>(ret.data) = u.n;
|
||||
*reinterpret_cast<int32_t*>(ret.data + 4) = static_cast<int32_t>(tv.tv_sec);
|
||||
*reinterpret_cast<int32_t*>(ret.data + 8) = static_cast<int32_t>(tv.tv_usec);
|
||||
*reinterpret_cast<int32_t*>(ret.data + 12) = static_cast<int32_t>(getpid());
|
||||
|
Loading…
x
Reference in New Issue
Block a user