*/intrwlock_attr_init(pthread_rwlockattr_t*attr){#ifdefMAGMA_PEDANTICintresult =pthread_rwlockattr_init(attr);if(result) log_pedantic("Could not initialize the read/write lock attribute object. {pthread_rwlockattr_init= %i}", result);returnresult;#elsereturnpthread_rwlockattr_init(attr);#endif...