aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/tbb.scm
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2022-02-08 14:41:36 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2022-02-08 14:41:36 +0100
commit3c37c9285116a96cac02147b7b3618a5e63eb2c2 (patch)
tree160d4c12a06c80ed0fdf4227fd2fa9b4a3706e86 /gnu/packages/tbb.scm
parent0a54ba43531419d2470d91c6ae94047cc516c3ab (diff)
downloadguix-3c37c9285116a96cac02147b7b3618a5e63eb2c2.tar.gz
guix-3c37c9285116a96cac02147b7b3618a5e63eb2c2.zip
gnu: nushell: Improve synopsis.
* gnu/packages/shells.scm (nushell)[synopsis]: Improve wording.
Diffstat (limited to 'gnu/packages/tbb.scm')
0 files changed, 0 insertions, 0 deletions
f = 0x0 old_unit = 0x0 yield_cnt = {e_void = 0xfa, e_str = 0xfa <error: Cannot access memory at address 0xfa>, e_int = 250, e_uint = 250, e_long = 250, e_ulong = 250, e_ulonglong = 250} no_cpuaff = {e_void = 0x0, e_str = 0x0, e_int = 0, e_uint = 0, e_long = 0, e_ulong = 0, e_ulonglong = 0} env_unit_id = {e_void = 0xffffffffffffffff, e_str = 0xffffffffffffffff <error: Cannot access memory at address 0xffffffffffffffff>, e_int = -1, e_uint = 4294967295, e_long = -1, e_ulong = 18446744073709551615, e_ulonglong = 18446744073709551615} env_port_id = {e_void = 0x0, e_str = 0x0, e_int = 0, e_uint = 0, e_long = 0, e_ulong = 0, e_ulonglong = 0} env_sl = {e_void = 0x0, e_str = 0x0, e_int = 0, e_uint = 0, e_long = 0, e_ulong = 0, e_ulonglong = 0} ptl_sizes = <optimized out> default_cpuaff = <optimized out> opts = {timeout = 180000000000, unit = -1, affinity = 0, shm_mbytes = 10, sendbufs_num = 1024, network_pkey = 65535, port = 0, outsl = 0, service_id = 1152940698815692800, path_res_type = PSM_PATH_RES_NONE, senddesc_num = 4096, imm_size = 128} amsh_ptl = 0x1fc6e48 ips_ptl = 0x1fc6f88 self_ptl = 0x1fc99c8 i = 3 It looks like ptl.c:24 is writing past the region that was malloc'd. Turning stats off solves the problem. diff --git a/psm_utils.c b/psm_utils.c index c8651fe..5514921 100644 --- a/psm_utils.c +++ b/psm_utils.c @@ -1058,7 +1058,7 @@ psmi_log_memstats(psmi_memtype_t type, int64_t nbytes) return; } -#define psmi_stats_mask PSMI_STATSTYPE_MEMORY +#define psmi_stats_mask 0 #ifdef malloc #undef malloc