Skip to content

Commit

Permalink
2010-07-01 Zoltan Varga <vargaz@gmail.com>
Browse files Browse the repository at this point in the history
	* filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
	from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
	match their declarations and vice-versa.

svn path=/trunk/mono/; revision=159774
  • Loading branch information
vargaz committed Jul 1, 2010
1 parent 8543ba4 commit d93d002
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions mono/metadata/ChangeLog
@@ -1,3 +1,9 @@
2010-07-01 Zoltan Varga <vargaz@gmail.com>

* filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
match their declarations and vice-versa.



Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com> Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>


Expand Down
2 changes: 1 addition & 1 deletion mono/metadata/decimal.h
Expand Up @@ -44,6 +44,6 @@ double mono_decimal2double(/*[In]*/decimal_repr* pA) MONO_INTERNAL;
gint32 mono_decimalSetExponent(/*[In, Out]*/decimal_repr* pA, gint32 texp) MONO_INTERNAL; gint32 mono_decimalSetExponent(/*[In, Out]*/decimal_repr* pA, gint32 texp) MONO_INTERNAL;


gint32 mono_string2decimal(/*[Out]*/decimal_repr* pA, /*[In]*/MonoString* s, gint32 decrDecimal, gint32 sign) MONO_INTERNAL; gint32 mono_string2decimal(/*[Out]*/decimal_repr* pA, /*[In]*/MonoString* s, gint32 decrDecimal, gint32 sign) MONO_INTERNAL;
gint32 mono_decimal2string(/*[In]*/decimal_repr* pA, int digits, int decimals, gint32 mono_decimal2string(/*[In]*/decimal_repr* pA, gint32 digits, gint32 decimals,
/*[Out]*/MonoArray* pArray, gint32 bufSize, gint32* pDecPos, gint32* pSign) MONO_INTERNAL; /*[Out]*/MonoArray* pArray, gint32 bufSize, gint32* pDecPos, gint32* pSign) MONO_INTERNAL;


2 changes: 1 addition & 1 deletion mono/metadata/filewatcher.c
Expand Up @@ -155,7 +155,7 @@ int ves_icall_System_IO_InotifyWatcher_AddWatch (int fd, MonoString *directory,
return -1; return -1;
} }


int ves_icall_System_IO_InotifyWatcher_RemoveWatch (int fd, int watch_descriptor) int ves_icall_System_IO_InotifyWatcher_RemoveWatch (int fd, gint32 watch_descriptor)
{ {
return -1; return -1;
} }
Expand Down
2 changes: 1 addition & 1 deletion mono/metadata/filewatcher.h
Expand Up @@ -25,7 +25,7 @@


G_BEGIN_DECLS G_BEGIN_DECLS


gboolean ves_icall_System_IO_FSW_SupportsFSW (void) MONO_INTERNAL; gint ves_icall_System_IO_FSW_SupportsFSW (void) MONO_INTERNAL;


gboolean ves_icall_System_IO_FAMW_InternalFAMNextEvent (gpointer conn, gboolean ves_icall_System_IO_FAMW_InternalFAMNextEvent (gpointer conn,
MonoString **filename, MonoString **filename,
Expand Down
2 changes: 1 addition & 1 deletion mono/metadata/threads-types.h
Expand Up @@ -61,7 +61,7 @@ MonoInternalThread* mono_thread_create_internal (MonoDomain *domain, gpointer fu
void ves_icall_System_Threading_Thread_ConstructInternalThread (MonoThread *this) MONO_INTERNAL; void ves_icall_System_Threading_Thread_ConstructInternalThread (MonoThread *this) MONO_INTERNAL;
HANDLE ves_icall_System_Threading_Thread_Thread_internal(MonoThread *this_obj, MonoObject *start) MONO_INTERNAL; HANDLE ves_icall_System_Threading_Thread_Thread_internal(MonoThread *this_obj, MonoObject *start) MONO_INTERNAL;
void ves_icall_System_Threading_InternalThread_Thread_free_internal(MonoInternalThread *this_obj, HANDLE thread) MONO_INTERNAL; void ves_icall_System_Threading_InternalThread_Thread_free_internal(MonoInternalThread *this_obj, HANDLE thread) MONO_INTERNAL;
void ves_icall_System_Threading_Thread_Sleep_internal(int ms) MONO_INTERNAL; void ves_icall_System_Threading_Thread_Sleep_internal(gint32 ms) MONO_INTERNAL;
gboolean ves_icall_System_Threading_Thread_Join_internal(MonoInternalThread *this_obj, int ms, HANDLE thread) MONO_INTERNAL; gboolean ves_icall_System_Threading_Thread_Join_internal(MonoInternalThread *this_obj, int ms, HANDLE thread) MONO_INTERNAL;
gint32 ves_icall_System_Threading_Thread_GetDomainID (void) MONO_INTERNAL; gint32 ves_icall_System_Threading_Thread_GetDomainID (void) MONO_INTERNAL;
MonoString* ves_icall_System_Threading_Thread_GetName_internal (MonoInternalThread *this_obj) MONO_INTERNAL; MonoString* ves_icall_System_Threading_Thread_GetName_internal (MonoInternalThread *this_obj) MONO_INTERNAL;
Expand Down

0 comments on commit d93d002

Please sign in to comment.