Custom Query (146 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 146)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket
#116
Description

Test files in .expect that have something else after the .txt e.g. .txt.orig or .txt~ get run as extra tests.

#117
Description
#include "rational.hfa"
int main() {
  Rational(int) x = {5, 5};  // 1
  Rational(int) y = 0;       // 2  
}

With 1 effective and 2 commented out, compiles and links. With 2 effective , compiles and fails to link.

undefined reference to `_X12_constructorQ1_0_0_22__X16_operator_assignFBD0_BD0BD0__X12_constructorFv_BD0__X12_constructorFv_BD0BD0__X11_destructorFv_BD0__X16_operator_lognotFi_BD0__X15_operator_equalFi_BD0BD0__X18_operator_notequalFi_BD0BD0__X14_operator_lessFi_BD0BD0__X19_operator_lessequalFi_BD0BD0__X17_operator_greaterFi_BD0BD0__X22_operator_greaterequalFi_BD0BD0__X12_constructorFv_BD0Z__X12_constructorFv_BD0O__X19_operator_unaryplusFBD0_BD0__X20_operator_unaryminusFBD0_BD0__X13_operator_addFBD0_BD0BD0__X18_operator_subtractFBD0_BD0BD0__X18_operator_multiplyFBD0_BD0BD0__X16_operator_divideFBD0_BD0BD0__X17_operator_modulusFBD0_BD0BD0__X19_operator_divassignFBD0_BD0BD0__X3absFBD0_BD0__Fv_S8Rational_BD0_Z__1'
#242
Description

The pop_and_set_new_owner decrements the wait_count even if no thread was woken up.

void pop_and_set_new_owner( blocking_lock & this ) with( this ) {
	$thread * t = &dropHead( blocked_threads );
	owner = t;
	recursion_count = ( t ? 1 : 0 );
	wait_count--;
	unpark( t );
}
1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.