[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1530-g404327a

Tim Prouty tprouty at samba.org
Mon May 11 17:40:46 GMT 2009


On May 10, 2009, at 7:46 PM, Derrell Lipman wrote:

> The branch, master has been updated
>       via  404327ad41c5f24f9ace5cad31509149d87197fd (commit)
>       via  db69ebcbcebbd3882d2eee7df8de15c3dc9c309b (commit)
>       via  418a2eeae8912d14e32b0119232b897e78221037 (commit)
>       via  d3434477e6d42432a0acf426fcfbe39eb11b1fd0 (commit)
>      from  831b73ec82717c3c73ea1250f9c94228d251c1ec (commit)
>
> http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
>
>
> diff --git a/source3/include/libsmbclient.h b/source3/include/ 
> libsmbclient.h
> index 869aeb6..3b38b30 100644
> --- a/source3/include/libsmbclient.h
> +++ b/source3/include/libsmbclient.h
> @@ -2696,6 +2696,115 @@ smbc_set_credentials_with_fallback(SMBCCTX  
> *ctx,
> 			     	   const char *user,
> 			    	   const char *password);
>
> +void
> +smbc_thread_impl(
> +        /* Mutex functions. */
> +        int (*create_mutex)(const char *lockname,
> +                            void **pplock,
> +                            const char *location);
> +        void (*destroy_mutex)(void *plock,
> +                              const char *location);
> +        int (*lock_mutex)(void *plock,
> +                          int lock_type,
> +                          const char *location);
> +
> +        /* Thread local storage. */
> +        int (*create_tls)(const char *keyname,
> +                          void **ppkey,
> +                          const char *location);
> +        void (*destroy_tls)(void **ppkey,
> +                            const char *location);
> +        int (*set_tls)(void *pkey,
> +                       const void *pval,
> +                       const char *location);
> +        void *(*get_tls)(void *pkey,
> +                         const char *location);
> +        );

Hi Derrell,

Didn't you mean for these semi-colons to be commas?

-Tim


More information about the samba-technical mailing list