2001-12-19 07:46:35 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2001-12-19 07:46:35 +03:00
Samba temporary memory allocation functions - - torturer
Copyright ( C ) 2001 by Martin Pool < mbp @ samba . org >
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
# define NCTX 10
# define NOBJ 20
int main ( void )
{
int i ;
TALLOC_CTX * ctx [ NCTX ] ;
for ( i = 0 ; i < NCTX ; i + + ) {
2002-12-22 19:02:36 +03:00
ctx [ i ] = talloc_init ( " torture(%d) " , i ) ;
2001-12-19 07:46:35 +03:00
}
for ( i = 0 ; i < NCTX ; i + + ) {
int j ;
for ( j = 0 ; j < NOBJ ; j + + ) {
2001-12-19 11:18:07 +03:00
char * p ;
size_t size = 1 < < ( i / 3 + j ) ;
2001-12-19 07:46:35 +03:00
p = talloc ( ctx [ i ] , size ) ;
if ( ! p ) {
fprintf ( stderr ,
2001-12-19 10:36:32 +03:00
" failed to talloc %.0f bytes \n " ,
( double ) size ) ;
2001-12-19 07:46:35 +03:00
exit ( 1 ) ;
}
2001-12-19 11:18:07 +03:00
memset ( p , ' A ' + j , size ) ;
2001-12-19 07:46:35 +03:00
}
}
for ( i = 0 ; i < NCTX ; i + + ) {
2001-12-19 11:18:07 +03:00
printf ( " talloc@%p %-40s %dkB \n " , ctx [ i ] ,
2001-12-19 10:36:32 +03:00
talloc_pool_name ( ctx [ i ] ) ,
2001-12-19 11:18:07 +03:00
talloc_pool_size ( ctx [ i ] ) > > 10 ) ;
2001-12-19 07:46:35 +03:00
}
2002-01-03 08:57:02 +03:00
printf ( " %s " , talloc_describe_all ( ctx [ 0 ] ) ) ;
2001-12-19 10:36:32 +03:00
for ( i = NCTX - 1 ; i > = 0 ; i - - )
talloc_destroy ( ctx [ i ] ) ;
2001-12-19 07:46:35 +03:00
return 0 ;
}