~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/concurrency_test.cc

  • Committer: Monty Taylor
  • Date: 2010-10-21 23:10:12 UTC
  • mto: (1879.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1880.
  • Revision ID: mordred@inaugust.com-20101021231012-uhsebiqo23xi0ygy
Updated AUTHORS list with everyone from bzr logs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
  Just a test application for threads.
22
22
  */
23
23
 
24
 
#include <config.h>
 
24
#include "config.h"
25
25
 
26
26
#include "azio.h"
27
27
#include <stdio.h>
37
37
#ifndef __WIN__
38
38
#include <sys/wait.h>
39
39
#endif
40
 
#include <memory>
41
40
 
42
41
#ifdef __WIN__
43
42
#define srandom  srand
45
44
#define snprintf _snprintf
46
45
#endif
47
46
 
48
 
#include <boost/scoped_ptr.hpp>
49
 
 
50
47
#include "azio.h"
51
48
 
52
 
#define DEFAULT_CONCURRENCY     10
53
49
#define DEFAULT_INITIAL_LOAD 10000
54
50
#define DEFAULT_EXECUTE_SECONDS 120
55
51
#define TEST_FILENAME "concurrency_test.az"
140
136
{
141
137
  unsigned int x;
142
138
  uint64_t total;
143
 
  boost::scoped_ptr<azio_stream> writer_handle_ap(new azio_stream);
144
 
  azio_stream &writer_handle= *writer_handle_ap.get();
 
139
  azio_stream writer_handle;
145
140
  thread_context_st *context;
146
141
  pthread_t mainthread;            /* Thread descriptor */
147
142
  pthread_attr_t attr;          /* Thread attributes */
268
263
  uint64_t count;
269
264
  int ret;
270
265
  int error;
271
 
  boost::scoped_ptr<azio_stream> reader_handle_ap(new azio_stream);
272
 
  azio_stream &reader_handle= *reader_handle_ap.get();
 
266
  azio_stream reader_handle;
273
267
 
274
268
  if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY,
275
269
                    context->use_aio)))