~ubuntu-branches/ubuntu/karmic/apr-util/karmic-updates

« back to all changes in this revision

Viewing changes to include/apr_queue.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-01-12 10:17:09 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080112101709-1gept1becx4nnlh4
Tags: 1.2.12+dfsg-2
* Build-Depend on libdb4.6-dev instead of libdb-dev >= 4.6, as the latter
  causes problems with sbuild.
* Change server in watch file since www.eu.apache.org is unreliable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
2
 
 * applicable.
3
 
 *
4
 
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 
 * you may not use this file except in compliance with the License.
6
 
 * You may obtain a copy of the License at
 
1
/* Licensed to the Apache Software Foundation (ASF) under one or more
 
2
 * contributor license agreements.  See the NOTICE file distributed with
 
3
 * this work for additional information regarding copyright ownership.
 
4
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
5
 * (the "License"); you may not use this file except in compliance with
 
6
 * the License.  You may obtain a copy of the License at
7
7
 *
8
8
 *     http://www.apache.org/licenses/LICENSE-2.0
9
9
 *
17
17
#ifndef APR_QUEUE_H
18
18
#define APR_QUEUE_H
19
19
 
20
 
#if APR_HAS_THREADS
21
20
/**
22
21
 * @file apr_queue.h
23
22
 * @brief Thread Safe FIFO bounded queue
30
29
#include "apr_errno.h"
31
30
#include "apr_pools.h"
32
31
 
 
32
#if APR_HAS_THREADS
 
33
 
33
34
#ifdef __cplusplus
34
35
extern "C" {
35
36
#endif /* __cplusplus */