~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/os0thread.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:30:27 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103033027-lskb6gxwwforfz71
fix docs warning: underline/overline too short for replace.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
/* Define a function pointer type to use in a typecast */
58
58
typedef void* (*os_posix_f_t) (void*);
59
59
 
60
 
#ifdef HAVE_PSI_INTERFACE
61
 
/* Define for performance schema registration key */
62
 
typedef unsigned int    mysql_pfs_key_t;
63
 
#endif
64
 
 
65
60
/***************************************************************//**
66
61
Compares two thread ids for equality.
67
62
@return TRUE if equal */
92
87
os_thread_create(
93
88
/*=============*/
94
89
#ifndef __WIN__
95
 
        os_posix_f_t            start_f,
 
90
                 os_posix_f_t            start_f,
96
91
#else
97
92
        ulint (*start_f)(void*),                /*!< in: pointer to function
98
93
                                                from which to start */