Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cpp: fix some issues in the cpp implementation #1

Merged
merged 1 commit into from
Oct 17, 2016

Conversation

tomaszkapela
Copy link
Collaborator

@tomaszkapela tomaszkapela commented Oct 17, 2016

These changes are due to the ongoing port to Windows.


This change is Reviewable

These changes are due to the ongoing port to Windows.
@tomaszkapela
Copy link
Collaborator Author

Please check this on Windows manually, just in case.

@lplewa lplewa merged commit 8e9d895 into lplewa:cccp Oct 17, 2016
lplewa added a commit that referenced this pull request Oct 17, 2016
cpp: fix some issues in the cpp implementation
lplewa added a commit that referenced this pull request Oct 18, 2016
As we have 6 jobs and 4 concurrent threads in Travis our job schedule
is presented in the figure below:

#1 ======
#2 ======
#3 ========================
#4 ========================
#5       ========================
#6       ======

a new order will look like this:

#3 ========================
#4 ========================
#5 ========================
#1 ======
#2       ======
#6             ======

what give us '======' improvement (at the time of this commit it's ~13 min)
lplewa pushed a commit that referenced this pull request Jan 12, 2017
lplewa pushed a commit that referenced this pull request Feb 6, 2017
Use an escaped version of character #1 in the
script, used as placeholder for comment sections
in the parsed C source file input.
lplewa pushed a commit that referenced this pull request Jul 25, 2017
Scripts must start with #!/usr/bin/env <shell> for portability.
Add set -e to top-level scripts.
Add use warnings to perl scripts.
lplewa pushed a commit that referenced this pull request Nov 24, 2017
Tests #2/#3 are specifically for helgrind/drd tests.
Test #1 should never be executed under valgrind, even if force-enabled
via command-line options.

Ref: pmem/issues#664
lplewa pushed a commit that referenced this pull request Nov 24, 2017
test: disable Valgrind in vmem_multiple_pools #1
lplewa pushed a commit that referenced this pull request Nov 24, 2017
Ref: pmem/issues#639
Ref: pmem/issues#665

Apparently valgrind just can't handle the way jemalloc
uses mutexes across forks, as demonstrated by this
dummy program:

$ cat dummy.c
pthread_mutex_t dummy = PTHREAD_MUTEX_INITIALIZER;

static void prefork(void)
{
	pthread_mutex_lock(&dummy);
}

static void postfork_child(void)
{
	pthread_mutexattr_t attr;

	if (pthread_mutexattr_init(&attr) != 0)
	        abort();
	if (pthread_mutex_init(&dummy, &attr) != 0) {
	        pthread_mutexattr_destroy(&attr);
	        abort();
	}
	pthread_mutexattr_destroy(&attr);
}

static void postfork_parent(void)
{
	pthread_mutex_unlock(&dummy);
}

int main()
{
	pthread_atfork(prefork,
	    postfork_parent, postfork_child);
	fork();
	pthread_mutex_lock(&dummy);
	pthread_mutex_unlock(&dummy);
}
$ cc -pthread dummy.c -o dummy
$ valgrind --tool=helgrind ./dummy 2>&1 | grep holds
==26890== Thread #1: Exiting thread still holds 1 lock
$ valgrind --tool=drd ./dummy 2>&1 | grep -i mutex
==26898== Mutex reinitialization:
		mutex 0x30a040, recursion count 1, owner 1.
==26898==    at 0x4C385F0: pthread_mutex_init
==26898== mutex 0x30a040 was first observed at:
==26898==    at 0x4C390D3: pthread_mutex_lock
==26898== Recursive locking not allowed:
		mutex 0x30a040, recursion count 1, owner 1.
==26898==    at 0x4C390D3: pthread_mutex_lock
==26898== mutex 0x30a040 was first observed at:
==26898==    at 0x4C390D3: pthread_mutex_lock
lplewa pushed a commit that referenced this pull request Jul 26, 2018
Change meaning of expectation parameter in execute function.
lplewa pushed a commit that referenced this pull request Sep 24, 2019
test (py): generalize obj_basic_integration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants