X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsel_thread.h;h=8c9d7ea2e6ef17448b1d5b999210efb7c5234e76;hb=b0feb8036d34aa58427e56a26ef196fe8c90ee79;hp=ce35ceff746aebee4f51efd064134bb240b5e74b;hpb=c7ce18b91b4b542af4f02ad9fa3f86f12b92f3d1;p=pazpar2-moved-to-github.git diff --git a/src/sel_thread.h b/src/sel_thread.h index ce35cef..8c9d7ea 100644 --- a/src/sel_thread.h +++ b/src/sel_thread.h @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2012 Index Data + Copyright (C) 2006-2013 Index Data Pazpar2 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 @@ -26,7 +26,7 @@ YAZ_BEGIN_CDECL /** \brief select thread handler type */ typedef struct sel_thread *sel_thread_t; -/** \brief creates select thread +/** \brief creates select thread \param work_handler handler that does work in worker thread \param work_destroy optional destroy handler for work (0 = no handler) \param read_fd pointer to readable socket upon completion @@ -42,7 +42,7 @@ sel_thread_t sel_thread_create(void (*work_handler)(void *work_data), void (*work_destroy)(void *work_data), int *read_fd, int no_of_threads); -/** \brief destorys select thread +/** \brief destorys select thread \param p select thread handler */ void sel_thread_destroy(sel_thread_t p); @@ -53,7 +53,7 @@ void sel_thread_destroy(sel_thread_t p); */ void sel_thread_add(sel_thread_t p, void *data); -/** \brief gets result of work +/** \brief gets result of work \param p select thread handler \returns data for work (which work_handler has been working on) */